We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9dad0d4 commit 484fd07Copy full SHA for 484fd07
ecosystem.staging.config.js renamed to ecosystem.staging.config.cjs
scripts/deploy.sh
100644
100755
@@ -60,7 +60,9 @@ echo "Building application..."
60
npm run build
61
62
# Determine ecosystem config file
63
-if [ "$ENVIRONMENT" == "staging" ] && [ -f "ecosystem.staging.config.js" ]; then
+if [ "$ENVIRONMENT" == "staging" ] && [ -f "ecosystem.staging.config.cjs" ]; then
64
+ ECOSYSTEM_FILE="ecosystem.staging.config.cjs"
65
+elif [ "$ENVIRONMENT" == "staging" ] && [ -f "ecosystem.staging.config.js" ]; then
66
ECOSYSTEM_FILE="ecosystem.staging.config.js"
67
else
68
ECOSYSTEM_FILE="ecosystem.config.js"
0 commit comments