diff --git a/sites/platform/src/development/variables/set-variables.md b/sites/platform/src/development/variables/set-variables.md index a9b58cd61b..c14fce8323 100644 --- a/sites/platform/src/development/variables/set-variables.md +++ b/sites/platform/src/development/variables/set-variables.md @@ -219,6 +219,7 @@ if [ -f "deploy/environment.tracker.txt" ]; then else echo "File not found." export DEPLOY='Never on a Friday' +fi ``` While sanity checks like this are useful during troubleshooting, you shouldn't include such commands in your final code. diff --git a/sites/upsun/src/development/variables/set-variables.md b/sites/upsun/src/development/variables/set-variables.md index 9551112f1c..2668ed5cea 100644 --- a/sites/upsun/src/development/variables/set-variables.md +++ b/sites/upsun/src/development/variables/set-variables.md @@ -219,6 +219,7 @@ if [ -f "deploy/environment.tracker.txt" ]; then else echo "File not found." export DEPLOY='Never on a Friday' +fi ``` While sanity checks like this are useful during troubleshooting, you shouldn't include such commands in your final code.