mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fix script aborting when rm fails
This commit is contained in:
parent
d9b9fed266
commit
baff4a2feb
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ set -e
|
|||
echo "*** uBlock: Importing from Crowdin archive"
|
||||
|
||||
SRC=~/Downloads/crowdin
|
||||
rm -r $SRC
|
||||
rm -r $SRC || true
|
||||
unzip -q ~/Downloads/uBlock\ \(translations\).zip -d $SRC
|
||||
|
||||
DES=./src/_locales
|
||||
|
|
|
|||
Loading…
Reference in a new issue