Browse code

Fix wrong variable comparision in functions

A whitespace is missing.
Closes-Bug: #1247273

Change-Id: I4bbed6077813c5d7522650baf2e78d9c44c1bba4

DennyZhang authored on 2013/11/02 05:41:01
Showing 1 changed files
... ...
@@ -1266,7 +1266,7 @@ function setup_develop() {
1266 1266
     # where we really really want the overridden version to stick. So provide
1267 1267
     # a variable that tells us whether or not we should UNDO the requirements
1268 1268
     # changes (this will be set to False in the OpenStack ci gate)
1269
-    if [ $UNDO_REQUIREMENTS = "True"]; then
1269
+    if [ $UNDO_REQUIREMENTS = "True" ]; then
1270 1270
         if [ $update_requirements -eq 0 ]; then
1271 1271
             (cd $project_dir && git reset --hard)
1272 1272
         fi