Browse Source

Udpate script for MAC in 03_07

03_07
Michael Jenkins 4 years ago
parent
commit
abe324d536
1 changed files with 7 additions and 1 deletions
  1. +7
    -1
      MAC_LINUX_DOCKER.md

+ 7
- 1
MAC_LINUX_DOCKER.md View File

@ -8,7 +8,13 @@ If you are running Jenkins on MacOS, Linux, or Docker:
2. Enter the following for the command: 2. Enter the following for the command:
``` ```
#!/bin/bash #!/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 # Troubleshooting Errors


Loading…
Cancel
Save