]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
linguas.sh: fix error when removing non-existing autogenerated files
authorAndrei Borzenkov <arvidjaar@gmail.com>
Sun, 9 Aug 2015 13:28:12 +0000 (16:28 +0300)
committerAndrei Borzenkov <arvidjaar@gmail.com>
Sun, 9 Aug 2015 13:28:12 +0000 (16:28 +0300)
linguas.sh

index 1de42ba2dccc647698043fe4dc50ac9495312e87..e57f50dc6499a72846190d755e2063787e34f291 100755 (executable)
@@ -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