From f4ebf2ec696bfe89fda32ed7989758506b60cbec Mon Sep 17 00:00:00 2001 From: Wryn Wagner Date: Sat, 25 Sep 2021 00:49:46 -0600 Subject: [PATCH] more accurate sync messages --- bin/aws/s3/sync-media | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/aws/s3/sync-media b/bin/aws/s3/sync-media index 75a698a..21f367a 100755 --- a/bin/aws/s3/sync-media +++ b/bin/aws/s3/sync-media @@ -28,7 +28,7 @@ PULL_MEDIA() { local NO_DELETE="$2" [ ! $NO_DELETE ] && FLAGS=--delete - CHECK "updating $1" + CHECK "downloading latest $1" aws --profile $DOTWRYN_AWS_PROFILE \ s3 sync $REMOTE_TARGET $LOCAL_TARGET \ $FLAGS >/dev/null 2>&1 \ @@ -43,7 +43,7 @@ PUSH_MEDIA() { local NO_DELETE="$2" [ ! $NO_DELETE ] && FLAGS=--delete - CHECK "updating $1" + CHECK "uploading $1" aws --profile $DOTWRYN_AWS_PROFILE \ s3 sync $LOCAL_TARGET $REMOTE_TARGET \ $FLAGS \