Skip to content

Commit 35fb5af

Browse files
committed
check if passing task names is actually needed
1 parent 8800a49 commit 35fb5af

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.evergreen/evergreen.yml.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1236,7 +1236,6 @@ tasks:
12361236
mongosh_server_test_version: "<% out(mVersion) %>-enterprise"
12371237
mongosh_test_e2e_force_fips: "<% out(fipsVariant === 'fips' ? '1' : '') %>"
12381238
disable_openssl_shared_config_for_bundled_openssl: ${disable_openssl_shared_config_for_bundled_openssl|false}
1239-
task_name: ${task_name}
12401239
<% } } %>
12411240
- name: perf_tests_<% out(executableOsId.replace(/-/g, '_')) %>
12421241
tags: ["perf-test"]

.evergreen/setup-env.sh

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export IS_MONGOSH_EVERGREEN_CI=1
99
export DEBUG="mongodb*,$DEBUG"
1010

1111
if [ "$OS" != "Windows_NT" ]; then
12-
if which realpath; then # No realpath on macOS, but also not needed there
12+
if which realpath; then # No realpath on macOS, but also not needed there
1313
export HOME="$(realpath "$HOME")" # Needed to de-confuse nvm when /home is a symlink
1414
fi
1515
export NVM_DIR="$BASEDIR/.nvm"
@@ -42,7 +42,7 @@ if [ "$OS" == "Windows_NT" ]; then
4242
fi
4343

4444
# On RHEL hosts, we run as root for some reason
45-
if [ $(uname) = Linux ]; then
45+
if [ `uname` = Linux ]; then
4646
export npm_config_unsafe_perm=true
4747
fi
4848

@@ -69,9 +69,6 @@ fi
6969
echo "Running on:"
7070
uname -a
7171

72-
echo "Running task"
73-
echo $TASK_NAME
74-
7572
echo "Full path:"
7673
echo $PATH
7774

0 commit comments

Comments
 (0)