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:
parent
3ac259c685
commit
cb415697f3
2
clean.sh
2
clean.sh
@ -123,6 +123,6 @@ fi
|
|||||||
FILES_TO_CLEAN=".localrc.auto docs-files docs/ shocco/ stack-screenrc test*.conf* test.ini*"
|
FILES_TO_CLEAN=".localrc.auto docs-files docs/ shocco/ stack-screenrc test*.conf* test.ini*"
|
||||||
FILES_TO_CLEAN+=".stackenv .prereqs"
|
FILES_TO_CLEAN+=".stackenv .prereqs"
|
||||||
|
|
||||||
for file in FILES_TO_CLEAN; do
|
for file in $FILES_TO_CLEAN; do
|
||||||
rm -f $TOP_DIR/$file
|
rm -f $TOP_DIR/$file
|
||||||
done
|
done
|
||||||
|
Loading…
Reference in New Issue
Block a user