Skip to content

Commit 02e32dd

Browse files
CSHARP-3996: Fix cleanup-test-resources on Linux and Macos. (#708)
CSHARP-3996: Fix cleanup-test-resources on Linux and Macos.
1 parent b5e9da2 commit 02e32dd

11 files changed

+15
-7
lines changed

evergreen/cleanup-test-resources.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env bash
2+
13
set -o xtrace # Write all commands first to stderr
24

35
# Environment variables used as input:

evergreen/compile.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -o xtrace # Write all commands first to stderr
44
set -o errexit # Exit the script with error if any of the commands fail

evergreen/get-python-path.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env bash
2+
13
# Find the version of python on the system.
24
#
35
# Environment variables used as input:

evergreen/publish.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# DO NOT ECHO COMMANDS AS THEY CONTAIN SECRETS!
44

evergreen/run-atlas-connectivity-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# DO NOT set xtrace
44
set -o errexit # Exit the script with error if any of the commands fail

evergreen/run-atlas-data-lake-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -o xtrace
44
set -o errexit # Exit the script with error if any of the commands fail

evergreen/run-gssapi-auth-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Don't trace since the URI contains a password that shouldn't show up in the logs
44
set -o errexit # Exit the script with error if any of the commands fail

evergreen/run-load-balancer-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
set -o xtrace # Write all commands first to stderr
44
set -o errexit # Exit the script with error if any of the commands fail

evergreen/run-plain-auth-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/usr/bin/env bash
22

33
# Don't trace since the URI contains a password that shouldn't show up in the logs
44
set -o errexit # Exit the script with error if any of the commands fail

evergreen/set-temp-fle-aws-creds.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
#!/usr/bin/env bash
2+
13
# Obtains temporary AWS credentials for CSFLE testing.
24
#
35
# Run with a . to add environment variables to the current shell:

0 commit comments

Comments
 (0)