Fix S3 deployment: Remove invalid --no-cli-pager flag
Some checks failed
CI / test (push) Successful in 9m19s
Deploy / deploy (push) Failing after 5m50s

This commit is contained in:
Derek Slenk 2025-07-16 14:36:14 -04:00
parent 8f19d43632
commit 7efb5abcfd

View file

@ -11,7 +11,7 @@
"start": "next start", "start": "next start",
"lint": "next lint", "lint": "next lint",
"typecheck": "tsc --noEmit", "typecheck": "tsc --noEmit",
"deploy:s3": "npm run build:static && aws s3 sync out/ s3://$S3_BUCKET_NAME --delete --no-cli-pager", "deploy:s3": "npm run build:static && aws s3 sync out/ s3://$S3_BUCKET_NAME --delete",
"create-s3-bucket": "node scripts/create-s3-bucket.js", "create-s3-bucket": "node scripts/create-s3-bucket.js",
"prepare": "husky install" "prepare": "husky install"
}, },