From 073fd1381d07433d7a6b23191ec358ae97ec48f6 Mon Sep 17 00:00:00 2001 From: Erick Wilder Date: Mon, 27 Jul 2015 17:02:28 -0300 Subject: Force file deletion at cleaning tasks - Fresh install tests will fail if there's no file inside babel/localedata and/or babel/global.dat --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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 {} \; -- cgit v1.2.1