From c88c00e4846e6835a883ce773721c65b12f0162c Mon Sep 17 00:00:00 2001 From: Adam Edwards Date: Tue, 26 Jan 2016 22:09:17 -0800 Subject: Fix Solaris test break due to invalid if in shell script --- ci/verify-chef.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh index 1e384c7018..21153492b8 100755 --- a/ci/verify-chef.sh +++ b/ci/verify-chef.sh @@ -87,8 +87,7 @@ if [ ! -f "Gemfile.lock" ]; then fi CHEF_FIPS=0 -if [ $PIPELINE_NAME='chef-fips']; -then +if [ $PIPELINE_NAME='chef-fips']; then CHEF_FIPS=1 fi sudo env PATH=$PATH TERM=xterm CHEF_FIPS=$CHEF_FIPS bundle exec rspec -r rspec_junit_formatter -f RspecJunitFormatter -o $WORKSPACE/test.xml -f documentation spec/functional spec/unit -- cgit v1.2.1