Browse Source

Ignore failures removing docs directory

If the docs files aren't there, it's expected that removing them would
fail, and the task should continue.
pull/403/head
Julian Simioni 9 years ago
parent
commit
0146050620
  1. 2
      package.json

2
package.json

@ -13,7 +13,7 @@
"ciao": "node node_modules/ciao/bin/ciao -c test/ciao.json test/ciao",
"coverage": "node_modules/.bin/istanbul cover test/unit/run.js",
"audit": "npm shrinkwrap; node node_modules/nsp/bin/nspCLI.js audit-shrinkwrap; rm npm-shrinkwrap.json;",
"docs": "rm -r docs; cd test/ciao; node ../../node_modules/ciao/bin/ciao -c ../ciao.json . -d ../../docs"
"docs": "rm -r docs || true; cd test/ciao; node ../../node_modules/ciao/bin/ciao -c ../ciao.json . -d ../../docs"
},
"repository": {
"type": "git",

Loading…
Cancel
Save