Add some scripts

This commit is contained in:
Jon Staab
2025-04-02 16:20:43 -07:00
parent 847d2cb94d
commit 04c9af3357
2 changed files with 13 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
for package in $(ls packages); do
if [ $(./show_changes.sh $package | wc -l) -gt 0 ]; then
echo $package
fi
done
+6
View File
@@ -0,0 +1,6 @@
#!/bin/bash
package=$1
tag=$(git describe --tags --abbrev=0 --match=$package'/*')
git diff "$tag" "packages/$package"