Skip to content

Commit

Permalink
[fix] kill-ports fails when port not running
Browse files Browse the repository at this point in the history
  • Loading branch information
landakram committed Oct 29, 2021
1 parent abbc3b6 commit de7d0be
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 @@ -8,7 +8,7 @@
"start:no-gasless": "npm run kill-ports && REACT_APP_DISABLE_GASLESS=true REACT_APP_HARDHAT_FORK=mainnet HARDHAT_FORK=mainnet npx lerna run start --parallel",
"start:local": "npm run kill-ports && REACT_APP_HARDHAT_FORK= HARDHAT_FORK= npx lerna run start --parallel",
"start:murmuration": "npx lerna run start:murmuration --parallel",
"kill-ports": "for i in 4000 4001 3000 5001 8545 8080; do lsof -t -i:$i | xargs kill; done",
"kill-ports": "for i in 4000 4001 3000 5001 8545 8080; do lsof -t -i:$i | xargs -r kill; done",
"test": "npx lerna run test --stream",
"test:client": "npm run test -- --scope @goldfinch-eng/client",
"lint": "npx lerna run lint --no-bail",
Expand Down

0 comments on commit de7d0be

Please sign in to comment.