We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4158b04 commit 50d5493Copy full SHA for 50d5493
script/bootstrap
@@ -1,3 +1,4 @@
1
#! /bin/bash
2
+set -e
3
-bundle install -j8
4
+bundle install -j8 || bundle install
script/cibuild
@@ -1,6 +1,6 @@
set -e
-bundle exec rake spec
5
-bundle exec rubocop -S -D
6
-gem build jekyll-redirect-from.gemspec
+script/test
+script/fmt
+bundle exec rake build
script/fmt
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+echo "Rubocop $(bundle exec rubocop --version)"
+bundle exec rubocop -D -E $@
+success=$?
7
+if ((success != 0)); then
8
+ echo -e "\nTry running \`script/fmt -a\` to automatically fix errors"
9
+fi
10
+exit $success
0 commit comments