diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2025-06-01 18:34:37 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2025-06-01 18:34:37 -0400 |
| commit | 41482084ad227de1a82b4ee1fbc523ad57a7e8b9 (patch) | |
| tree | b291d4e4fadbec3ae838c7253259d5011bb982e9 /bundle-static-assets.sh | |
| parent | 658cd2744098c810210d7c9cafccc2093a285b0e (diff) | |
[cookbook] Add cookbook
Diffstat (limited to 'bundle-static-assets.sh')
| -rw-r--r-- | bundle-static-assets.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle-static-assets.sh b/bundle-static-assets.sh index a5d5c5a..ab2a523 100644 --- a/bundle-static-assets.sh +++ b/bundle-static-assets.sh @@ -4,7 +4,7 @@ set -euo pipefail function bundle_static_assets { STAMP="$(date +'%Y-%m-%d')" - ASSETS="$(find . -not -path './site/*' -a \( -name '*.jpg' -o -name '*.png' \) -print)" + ASSETS="$(find . -not -path './site/*' -a -not -path './cookbook-food-pics/*' -a \( -name '*.jpg' -o -name '*.png' \) -print)" echo "$ASSETS" | xargs -d'\n' tar -cvzf "./site/annex.tar.gz" } |