Remove CustomEvent

This commit is contained in:
Jon Staab
2024-08-19 08:59:39 -07:00
parent 975d51cafa
commit 8d3ca2ef6a
25 changed files with 124 additions and 120 deletions
+1 -4
View File
@@ -1,10 +1,7 @@
#!/bin/bash
for package in $(./get_packages.py); do
tag=$(git describe --tags --abbrev=0 --match=$package'/*')
changes=$(git diff "$tag" "packages/$package" | wc -l)
if [ $changes -gt 0 ]; then
if [ $(./show_changes.sh $package | wc -l) -gt 0 ]; then
echo $package
fi
done