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 9723e53 commit f4b70ceCopy full SHA for f4b70ce
.evergreen/scripts/setup-dev-env.sh
@@ -7,7 +7,10 @@ HERE="$( cd -- "$HERE" > /dev/null 2>&1 && pwd )"
7
ROOT=$(dirname "$(dirname $HERE)")
8
pushd $ROOT > /dev/null
9
10
-exit 0
+# Bail early if running on GitHub Actions.
11
+if [ -n "${GITHUB_ACTION:-}" ]; then
12
+ exit 0
13
+fi
14
15
# Source the env files to pick up common variables.
16
if [ -f $HERE/env.sh ]; then
0 commit comments