Skip to content

Commit

Permalink
Merge pull request #108 from bvotteler/fix-build-rm-command
Browse files Browse the repository at this point in the history
Fix: force rm to avoid error during yarn build if no build folder exists
  • Loading branch information
bvotteler authored Sep 11, 2023
2 parents 03e61ec + df5a11f commit 0a3ba06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"InterBTC"
],
"scripts": {
"build": "rm -r build && tsc -p tsconfig.json",
"build": "rm -rf build && tsc -p tsconfig.json",
"prepublish": "yarn build"
},
"devDependencies": {
Expand Down

0 comments on commit 0a3ba06

Please sign in to comment.