Skip to content

Commit

Permalink
Fix cleanup in build script so rm won't complain during first build
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris committed Feb 5, 2015
1 parent e3c66b4 commit b2ae524
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tools/make-chromium.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ echo "*** uBlock.chromium: Creating web store package"
echo "*** uBlock.chromium: Copying files"

DES=dist/build/uBlock.chromium
rm -r $DES
rm -rf $DES
mkdir -p $DES

cp -R assets $DES/
Expand Down
2 changes: 1 addition & 1 deletion tools/make-firefox.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
echo "*** uBlock.firefox: Copying files"

DES=dist/build/uBlock.firefox
rm -r $DES
rm -rf $DES
mkdir -p $DES

cp -R assets $DES/
Expand Down
2 changes: 1 addition & 1 deletion tools/make-safari.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
echo "*** uBlock.safariextension: Copying files"

DES=dist/build/uBlock.safariextension
rm -r $DES
rm -rf $DES
mkdir -p $DES

cp -R assets $DES/
Expand Down

0 comments on commit b2ae524

Please sign in to comment.