Skip to content

Commit

Permalink
fix: explicitly add "node" command to create-client script
Browse files Browse the repository at this point in the history
the command line script for starting the create-client script didn't include the node executable so it was being run as a shell script

Fix #200
  • Loading branch information
jimlambie committed Feb 15, 2017
1 parent eb44756 commit 8394355
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 @@ -3,7 +3,7 @@
"version": "1.15.0",
"main": "main.js",
"scripts": {
"create-client": "cd ../../.. && ./node_modules/@dadi/api/utils/create-client.js",
"create-client": "cd ../../.. && node ./node_modules/@dadi/api/utils/create-client.js",
"init": "validate-commit-msg",
"test": "standard 'dadi/**/*.js' && env NODE_ENV=test ./node_modules/.bin/istanbul cover -x **/workspace/** --report cobertura --report text --report html --report lcov ./node_modules/mocha/bin/_mocha test -- --require babel-register",
"posttest": "./scripts/coverage.js",
Expand Down

0 comments on commit 8394355

Please sign in to comment.