diff --git a/scripts/publish-deb b/scripts/publish-deb index 9e6014f8..08a03503 100755 --- a/scripts/publish-deb +++ b/scripts/publish-deb @@ -168,7 +168,7 @@ if [ "${sign_all}" ]; then echo "Signing ${package}..." sign_deb ${tmp_repo_path} ${debSuite} ${file} - echo "Synching ${package}.asc to ${s3_bucket_repo}..." + echo "Syncing ${package}.asc to ${s3_bucket_repo}..." aws s3 sync ${tmp_repo_path}/${debSuite}/${package}.asc ${s3_bucket_repo}/${debSuite}/${package}.asc --delete ---acl public-read aws cloudfront create-invalidation --distribution-id ${AWS_CLOUDFRONT_DIST_ID} --paths ${cloudfront_path}/${debSuite}/${package}.asc fi diff --git a/scripts/publish-rpm b/scripts/publish-rpm index fd1142fc..4e567157 100755 --- a/scripts/publish-rpm +++ b/scripts/publish-rpm @@ -99,7 +99,7 @@ if [ "${sign_all}" ]; then echo "Signing ${package}..." sign_rpm ${tmp_repo_path} ${file} - echo "Synching ${package}.asc to ${s3_bucket_repo}..." + echo "Syncing ${package}.asc to ${s3_bucket_repo}..." aws s3 sync ${tmp_repo_path}/${package}.asc ${s3_bucket_repo}/${package}.asc --delete ---acl public-read aws cloudfront create-invalidation --distribution-id ${AWS_CLOUDFRONT_DIST_ID} --paths ${cloudfront_path}/${package}.asc fi