Bump versions

This commit is contained in:
Jon Staab
2024-06-11 08:23:51 -07:00
parent 3696282a9f
commit 289d2fb8f9
7 changed files with 40 additions and 25 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/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