mirror of
https://github.com/jekyll/jekyll.git
synced 2026-01-11 16:08:02 -05:00
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
echo "RuboCop $(bundle exec rubocop --version)"
|
|
bundle exec rubocop -D --disable-pending-cops $@
|
|
success=$?
|
|
if ((success != 0)); then
|
|
echo -e "\nTry running \`script/fmt -a\` to automatically fix errors"
|
|
fi
|
|
exit $success
|