summaryrefslogtreecommitdiff
path: root/sync_to_cdn.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sync_to_cdn.sh')
-rwxr-xr-xsync_to_cdn.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/sync_to_cdn.sh b/sync_to_cdn.sh
index 46191f2..80dced6 100755
--- a/sync_to_cdn.sh
+++ b/sync_to_cdn.sh
@@ -3,8 +3,10 @@
TARGET=s3://cdn.proj.org/
for i in `ls -d *_*/`; do
- echo "Synchronizing $i ..."
- aws s3 sync $i "$TARGET" --exclude ".github/*" --profile projcdn
+ if test "$i" != "grid_tools/"; then
+ echo "Synchronizing $i ..."
+ aws s3 sync $i "$TARGET" --exclude ".github/*" --profile projcdn
+ fi
done
aws s3 cp geotiff.bundle.min.js "$TARGET" --profile projcdn
aws s3 cp ol.js "$TARGET" --profile projcdn