From 89d41ca23941d864ac9b5665cd68423311029236 Mon Sep 17 00:00:00 2001 From: DennyZhang Date: Fri, 1 Nov 2013 15:41:01 -0500 Subject: [PATCH] Fix wrong variable comparision in functions A whitespace is missing. Closes-Bug: #1247273 Change-Id: I4bbed6077813c5d7522650baf2e78d9c44c1bba4 --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 0a73b9f0ac..197b4cca17 100644 --- a/functions +++ b/functions @@ -1266,7 +1266,7 @@ function setup_develop() { # where we really really want the overridden version to stick. So provide # a variable that tells us whether or not we should UNDO the requirements # changes (this will be set to False in the OpenStack ci gate) - if [ $UNDO_REQUIREMENTS = "True"]; then + if [ $UNDO_REQUIREMENTS = "True" ]; then if [ $update_requirements -eq 0 ]; then (cd $project_dir && git reset --hard) fi