Skip to content

Commit

Permalink
Use rm -f instead of rm for deleting makefiles
Browse files Browse the repository at this point in the history
Originally proposed by @thblt at ccMSC/ckb#508
Revisited at #4
  • Loading branch information
Oleksii Vilchanskyi committed Apr 10, 2017
1 parent 1c77cd5 commit 577d7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickinstall
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ if [[ -d $SRCDIR ]]; then
echo "Preparing build files..."
# Clean up first
make clean >/dev/null 2>&1
rm Makefile Makefile.* ./*/*/Makefile ./*/*/Makefile.* >/dev/null 2>&1
rm -f Makefile Makefile.* ./*/*/Makefile ./*/*/Makefile.* >/dev/null 2>&1
# Generate makefiles
./qmake-auto "$QMAKEFLAGS" > "$TMPFILE" 2>&1
checkfail $?
Expand Down

0 comments on commit 577d7ce

Please sign in to comment.