From: Andrei Borzenkov Date: Sun, 9 Aug 2015 13:28:12 +0000 (+0300) Subject: linguas.sh: fix error when removing non-existing autogenerated files X-Git-Tag: 2.02-beta3~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7a85e69e0c00a6a2ddb2fca2261e0aed8b1d724;p=thirdparty%2Fgrub.git linguas.sh: fix error when removing non-existing autogenerated files --- diff --git a/linguas.sh b/linguas.sh index 1de42ba2d..e57f50dc6 100755 --- a/linguas.sh +++ b/linguas.sh @@ -6,7 +6,7 @@ autogenerated="en@quot en@hebrew de@hebrew en@cyrillic en@greek en@arabic en@pig for x in $autogenerated; do - rm "po/$x.po"; + rm -f "po/$x.po"; done