Skip to content

Commit

Permalink
Update to 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
stylemistake committed Dec 5, 2018
1 parent 182c839 commit 5c793db
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.9.0
2 changes: 1 addition & 1 deletion distrib/npm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bash-task-runner",
"version": "0.8.0",
"version": "0.9.0",
"description": "Simple, lightweight task runner for Bash.",
"bin": {
"runner": "bin/runner"
Expand Down
2 changes: 1 addition & 1 deletion distrib/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="bash-task-runner",
version="0.8.0",
version="0.9.0",
author="stylemistake",
author_email="[email protected]",
url="https://github.com/stylemistake/runner",
Expand Down
4 changes: 2 additions & 2 deletions runnerfile.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ task_default() {
}

task_shellcheck() {
runner_run shellcheck --exclude=SC2155,SC2016 "${source_files[@]}"
runner_run shellcheck --exclude=SC2016,SC2155,SC2164 "${source_files[@]}"
}

task_test() {
Expand Down Expand Up @@ -60,7 +60,7 @@ task_publish-npm() {
runner_sequence clean
rsync -a --relative "${publish_files[@]}" distrib/npm
enter-dir distrib/npm
npm publish
npm publish || return "${?}"
leave-dir
}

Expand Down

0 comments on commit 5c793db

Please sign in to comment.