Update infra:build script to use bash for improved compatibility

This commit is contained in:
faris Aljohari
2025-07-09 04:46:28 -06:00
parent e4ba7d46bb
commit 805c5dd180

View File

@ -22,7 +22,7 @@
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand", "test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./apps/backend/test/jest-e2e.json", "test:e2e": "jest --config ./apps/backend/test/jest-e2e.json",
"deploy": "./deploy.sh", "deploy": "./deploy.sh",
"infra:build": "./build.sh", "infra:build": "bash build.sh",
"infra:deploy": "cdk deploy SyncrowBackendStack", "infra:deploy": "cdk deploy SyncrowBackendStack",
"infra:destroy": "cdk destroy SyncrowBackendStack" "infra:destroy": "cdk destroy SyncrowBackendStack"
}, },