Browse code

Merge "Fix wrong variable comparision in functions"

Jenkins authored on 2013/11/07 12:25:52
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