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 6bcd830 commit 5bcfdf1Copy full SHA for 5bcfdf1
infrastructure/terraform/bin/terraform.sh
@@ -427,6 +427,8 @@ if [ "${bootstrap}" == "true" ]; then
427
fi;
428
429
# Run pre-plan.sh / pre-apply.sh / pre-output.sh etc
430
+echo "Looking for pre-${action}.sh"
431
+ls
432
if [ -f "pre-${action}.sh" ]; then
433
echo "Running pre-${action}.sh"
434
source pre-${action}.sh "${region}" "${environment}" "${action}" \
infrastructure/terraform/components/app/pre.sh
@@ -1,3 +1,5 @@
1
+echo "Running app pre.sh"
2
+
3
npm ci
4
5
npm run generate-dependencies --workspaces --if-present
0 commit comments