From abe324d536e2e63ea40d45f0b285c9ad95a36f2e Mon Sep 17 00:00:00 2001 From: Michael Jenkins Date: Fri, 1 Oct 2021 23:22:53 -0700 Subject: [PATCH] Udpate script for MAC in 03_07 --- MAC_LINUX_DOCKER.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/MAC_LINUX_DOCKER.md b/MAC_LINUX_DOCKER.md index de533b3..ea4c87a 100644 --- a/MAC_LINUX_DOCKER.md +++ b/MAC_LINUX_DOCKER.md @@ -8,7 +8,13 @@ If you are running Jenkins on MacOS, Linux, or Docker: 2. Enter the following for the command: ``` #!/bin/bash -echo "ENVIRONMENT = $ENVIRONMENT" +echo "RUN_TESTS = $RUN_TESTS" +if [ "$RUN_TESTS" = "true" ]; +then + echo "RUNNING TESTS!"; +else + echo "No tests will be run..."; +fi ``` # Troubleshooting Errors