Files
welshman/find_changes.sh
T
2024-06-11 08:23:51 -07:00

11 lines
224 B
Bash
Executable File

#!/bin/bash
for package in $(ls packages); do
tag=$(git describe --tags --abbrev=0 --match=$package'/*')
changes=$(git diff "$tag" "packages/$package" | wc -l)
if [ $changes -gt 0 ]; then
echo $package
fi
done