File size: 1,176 Bytes
d70d870 b284fed 9472d3a 26dee1b b284fed d70d870 9472d3a 26dee1b d70d870 f5762eb d70d870 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
#!/bin/bash
# Get list of changed files from git
changed_files=$(git diff --cached --name-only)
# Track if any demos were changed
any_changes=false
# Check each demo folder and rezip if changes detected
# Get the git root directory
root_dir=$(git rev-parse --show-toplevel)
# Change to the demos directory relative to root
cd "$root_dir/demos"
for folder in *; do
# Skip if this is a zip file
if [[ "$folder" == *.zip ]]; then
continue
fi
# Remove trailing slash and demos/ prefix
folder=${folder#demos/}
echo $folder
# Check if any changed files are in this folder
if echo "$changed_files" | grep -q "demos/$folder/*"; then
echo "Changes detected in $folder, rezipping..."
# Remove existing zip if it exists
rm -f "$folder.zip"
# Create new zip archive
zip -r "$folder.zip" "$folder"
# Stage the new zip file
git add "$folder.zip"
any_changes=true
fi
done
if [ "$any_changes" = false ]; then
echo "No demo folders were modified, skipping zip creation"
exit 0
else
echo "Demo folders were modified"
exit 0
fi
|