From 32a99adf01955d5dac80f670dceaa280aad8d69a Mon Sep 17 00:00:00 2001 From: Jason Hiser <jdh8d@virginia.edu> Date: Fri, 9 Nov 2018 12:41:39 -0800 Subject: [PATCH] changed env command to be a bit more selective --- cicd_tests/do-build.sh | 2 +- cicd_tests/do-clean.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cicd_tests/do-build.sh b/cicd_tests/do-build.sh index a08d17d..2ea87c4 100755 --- a/cicd_tests/do-build.sh +++ b/cicd_tests/do-build.sh @@ -10,7 +10,7 @@ main() pwd hostname whoami - env|grep CICD + env|grep "^CICD" local orig_dir=$(pwd) diff --git a/cicd_tests/do-clean.sh b/cicd_tests/do-clean.sh index a6b66de..95dc3b0 100755 --- a/cicd_tests/do-clean.sh +++ b/cicd_tests/do-clean.sh @@ -10,7 +10,7 @@ main() pwd hostname whoami - env|grep CICD + env|grep "^CICD" if [[ $CICD_NIGHTLY == 1 ]] ; then -- GitLab