Skip to content

Commit

Permalink
remove pushd and popd because now uses w uses /bin/sh
Browse files Browse the repository at this point in the history
  • Loading branch information
nandub committed Aug 6, 2018
1 parent dfd321a commit b136e8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"scripts": {
"postinstall": "yarn run build",
"start": "node server.js",
"build": "pushd client && yarn install && yarn run build && popd",
"test": "pushd client && yarn run lint && popd"
"build": "cd client && yarn install && yarn run build && cd -",
"test": "cd client && yarn run lint && cd -"
},
"engines": {
"node": ">=8.11.3",
Expand Down

0 comments on commit b136e8e

Please sign in to comment.