summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJay Mundrawala <jdmundrawala@gmail.com>2016-01-27 07:50:13 -0800
committerJay Mundrawala <jdmundrawala@gmail.com>2016-01-27 07:50:13 -0800
commit35388faee59c2d3218381c618f21323a5073f78e (patch)
treefa3b2e5bf9ce3fce0b528a5f87144dfe4e7427eb
parentdaee733688af24312438654dc15d067ad01b168e (diff)
downloadchef-35388faee59c2d3218381c618f21323a5073f78e.tar.gz
Fix sh spacing issues
The if statement was always being evaluated to true.
-rwxr-xr-xci/verify-chef.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/verify-chef.sh b/ci/verify-chef.sh
index 7d7ce08608..f0d174084a 100755
--- a/ci/verify-chef.sh
+++ b/ci/verify-chef.sh
@@ -87,7 +87,7 @@ if [ ! -f "Gemfile.lock" ]; then
fi
unset CHEF_FIPS
-if [ $PIPELINE_NAME="chef-fips" ]; then
+if [ "$PIPELINE_NAME" = "chef-fips" ]; then
echo "Setting fips mode"
CHEF_FIPS=1
export CHEF_FIPS