summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Edwards <adamed@opscode.com>2016-01-26 22:09:17 -0800
committerAdam Edwards <adamed@opscode.com>2016-01-26 22:09:17 -0800
commitc88c00e4846e6835a883ce773721c65b12f0162c (patch)
tree79dc73304f94ef9c4ee3a381c09c59264e2136d9
parentc958ec94037a4014685e0229cc47af12944b4a97 (diff)
downloadchef-adamedx/solaris-ci-verify-break.tar.gz
Fix Solaris test break due to invalid if in shell scriptadamedx/solaris-ci-verify-break
-rwxr-xr-xci/verify-chef.sh3
1 files changed, 1 insertions, 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