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 0cc8955 commit f3fc7cdCopy full SHA for f3fc7cd
infrastructure/terraform/components/sandbox/pre.sh
@@ -10,14 +10,13 @@ echo Running pre.sh
10
echo "REGION=$REGION"
11
echo "ENVIRONMENT=$ENVIRONMENT"
12
echo "ACTION=$ACTION"
13
-echo "SKIP_SANDBOX_INSTALL=$SKIP_SANDBOX_INSTALL"
14
15
16
if [ "${ACTION}" == "apply" ]; then
17
cd $(git rev-parse --show-toplevel)
18
echo "Building lambdas for distribution"
19
20
- if [ -z "$SKIP_SANDBOX_INSTALL" ]; then
+ if [[ -z "${SKIP_SANDBOX_INSTALL:-}" ]]; then
21
echo "Installing dependencies"
22
make dependencies;
23
else
0 commit comments