Browse code

clean.sh removes all the files

clean.sh was incorrectly looping over the list of files to remove. Because of
this the files were not being removed.

Change-Id: Ie0559e1d396a4d35df6a12dfbceefa7eb261bac5
Closes-Bug:1285924

Shashank Hegde authored on 2014/02/28 09:46:43
Showing 1 changed files
... ...
@@ -123,6 +123,6 @@ fi
123 123
 FILES_TO_CLEAN=".localrc.auto docs-files docs/ shocco/ stack-screenrc test*.conf* test.ini*"
124 124
 FILES_TO_CLEAN+=".stackenv .prereqs"
125 125
 
126
-for file in FILES_TO_CLEAN; do
126
+for file in $FILES_TO_CLEAN; do
127 127
     rm -f $TOP_DIR/$file
128 128
 done