Skip to content
Snippets Groups Projects
Commit 847e6412 authored by nimrod's avatar nimrod
Browse files

- Fix issue with shell-lint hook, didn't check files after a failure.

- Bumped patch version.
parent 524af209
No related branches found
No related tags found
No related merge requests found
0.5.1
\ No newline at end of file
0.5.2
\ No newline at end of file
......@@ -2,5 +2,6 @@
set -eu
for filename in "$@"
do
/usr/bin/env -i /bin/sh -en "$filename"
/usr/bin/env -i /bin/sh -en "$filename" || failed=1
done
[ "${failed:-0}" -eq 1 ] && exit 1
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment