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
This commit is contained in:
Shashank Hegde 2014-02-27 16:46:43 -08:00
parent 3ac259c685
commit cb415697f3
1 changed files with 1 additions and 1 deletions

View File

@ -123,6 +123,6 @@ fi
FILES_TO_CLEAN=".localrc.auto docs-files docs/ shocco/ stack-screenrc test*.conf* test.ini*"
FILES_TO_CLEAN+=".stackenv .prereqs"
for file in FILES_TO_CLEAN; do
for file in $FILES_TO_CLEAN; do
rm -f $TOP_DIR/$file
done