Skip to content

Commit

Permalink
fix: fixed README auto-generation
Browse files Browse the repository at this point in the history
  • Loading branch information
andres-kovalev committed Oct 30, 2019
1 parent d6a16a7 commit 437b628
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t $CODECOV_TOKEN",
"precommit": "npm run lint",
"prepush": "npm run lint && npm run cover && npm run cover:check",
"prepare:readme": "sh ./tools/prepare-readme.sh",
"check:readme": "sh ./tools/check-readme.sh",
"prepare:readme": "bash ./tools/prepare-readme.sh",
"check:readme": "bash ./tools/check-readme.sh",
"build:docs": "gitbook build",
"publish:docs": "sh ./tools/publish-docs.sh . .temp",
"publish:docs": "bash ./tools/publish-docs.sh . .temp",
"prepare:release": "standard-version -t ''",
"prepare:package": "node ./tools/clean.js"
},
Expand Down
4 changes: 2 additions & 2 deletions tools/check-readme.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#/bin/sh
#!/bin/bash

set -e

sh ./tools/prepare-readme.sh
bash ./tools/prepare-readme.sh

if [[ `git status --porcelain` ]]; then
git add -A .
Expand Down

0 comments on commit 437b628

Please sign in to comment.