Skip to content

Commit c063ff1

Browse files
committed
quote shell value in test
1 parent 3905271 commit c063ff1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14969,7 +14969,7 @@ tasks:
1496914969
set -o xtrace
1497014970
# Compile mongoc-ping. Disable unnecessary dependencies since mongoc-ping is copied to a remote Ubuntu 18.04 ECS cluster for testing, which may not have all dependent libraries.
1497114971
. .evergreen/find-cmake.sh
14972-
export CC=${CC}
14972+
export CC='${CC}'
1497314973
$CMAKE -DENABLE_SASL=OFF -DENABLE_SNAPPY=OFF -DENABLE_ZSTD=OFF -DENABLE_CLIENT_SIDE_ENCRYPTION=OFF .
1497414974
$CMAKE --build . --target mongoc-ping
1497514975
- func: upload build

build/evergreen_config_lib/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ def _check_allowed(self):
897897
aws_compile_task = NamedTask('debug-compile-aws', commands=[shell_mongoc('''
898898
# Compile mongoc-ping. Disable unnecessary dependencies since mongoc-ping is copied to a remote Ubuntu 18.04 ECS cluster for testing, which may not have all dependent libraries.
899899
. .evergreen/find-cmake.sh
900-
export CC=${CC}
900+
export CC='${CC}'
901901
$CMAKE -DENABLE_SASL=OFF -DENABLE_SNAPPY=OFF -DENABLE_ZSTD=OFF -DENABLE_CLIENT_SIDE_ENCRYPTION=OFF .
902902
$CMAKE --build . --target mongoc-ping
903903
'''), func('upload build')])

0 commit comments

Comments
 (0)