summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorErick Wilder <erickwilder@gmail.com>2015-07-27 17:02:28 -0300
committerErick Wilder <erickwilder@gmail.com>2015-07-27 17:02:28 -0300
commit073fd1381d07433d7a6b23191ec358ae97ec48f6 (patch)
treef96ff98e2744f640da66e7aa2cbf0c930523c205 /Makefile
parentb306b8acbe95f9c47a4f3b177e9af596245d2f38 (diff)
downloadbabel-073fd1381d07433d7a6b23191ec358ae97ec48f6.tar.gz
Force file deletion at cleaning tasks
- Fresh install tests will fail if there's no file inside babel/localedata and/or babel/global.dat
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 5bb68a9..c0adaa1 100644
--- a/Makefile
+++ b/Makefile
@@ -18,8 +18,8 @@ import-cldr:
@python scripts/download_import_cldr.py
clean-cldr:
- @rm babel/localedata/*.dat
- @rm babel/global.dat
+ @rm -f babel/localedata/*.dat
+ @rm -f babel/global.dat
clean-pyc:
@find . -name '*.pyc' -exec rm {} \;