Skip to content

Commit

Permalink
ci-test: exit on error
Browse files Browse the repository at this point in the history
  • Loading branch information
thepwagner committed May 6, 2021
1 parent 1386b5d commit 4b56fd5
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion bundler/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion cargo/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion common/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion composer/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion dep/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion docker/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion elm/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion git_submodules/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion go_modules/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion gradle/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion hex/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion maven/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion npm_and_yarn/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion nuget/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down
2 changes: 1 addition & 1 deletion omnibus/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
2 changes: 1 addition & 1 deletion python/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
pyenv exec flake8 helpers/. --count --exclude=./.*,./python/spec/fixtures --show-source --statistics
Expand Down
2 changes: 1 addition & 1 deletion terraform/script/ci-test
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/sh -e

bundle install
bundle exec rubocop .
Expand Down

0 comments on commit 4b56fd5

Please sign in to comment.