summaryrefslogtreecommitdiff
path: root/sync_to_cdn.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sync_to_cdn.sh')
-rwxr-xr-xsync_to_cdn.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/sync_to_cdn.sh b/sync_to_cdn.sh
index f6207e1..2440c75 100755
--- a/sync_to_cdn.sh
+++ b/sync_to_cdn.sh
@@ -2,7 +2,7 @@
TARGET=s3://cdn.proj.org/
-for i in `ls -d */`; do
+for i in `ls -d *_*/`; do
echo "Synchronizing $i ..."
aws s3 sync $i "$TARGET" --exclude ".github/*" --profile projcdn
done