From 2dc906e2767b50bb6aa7ddca7f25b51614655ecd Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sat, 17 Sep 2022 22:54:59 +0000 Subject: [PATCH] deploy updates --- scripts/deploy-s3.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/deploy-s3.sh b/scripts/deploy-s3.sh index 2b189c1b..c755c793 100755 --- a/scripts/deploy-s3.sh +++ b/scripts/deploy-s3.sh @@ -11,7 +11,7 @@ SITEMAP_URL="https%3A%2F%2Fkremalicious.com%2Fsitemap.xml" set -e; function s3sync { - aws s3 sync ../public s3://"$1" \ + aws s3 sync ./public s3://"$1" \ --include "*" \ --exclude "*.html" \ --exclude "sw.js" \ @@ -28,7 +28,7 @@ function s3sync { --delete \ --acl public-read - aws s3 sync ../public s3://"$1" \ + aws s3 sync ./public s3://"$1" \ --exclude "*" \ --include "*.html" \ --include "sw.js" \