mirror of
https://github.com/sasjs/core.git
synced 2026-01-05 00:20:05 +00:00
fix: ensuring pre-commit fails when sasjs lint fails
This commit is contained in:
@@ -1,5 +1,12 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
sasjs lint
|
|
||||||
|
# Ensure lint is passing
|
||||||
|
LINT=`sasjs lint`
|
||||||
|
if [[ "$LINT" != "✔ All matched files use @sasjs/lint code style!" ]]; then
|
||||||
|
echo "$LINT"
|
||||||
|
echo "To commit in spite of these warnings, use the -n parameter."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
# Avoid commits to the master branch
|
# Avoid commits to the master branch
|
||||||
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
BRANCH=`git rev-parse --abbrev-ref HEAD`
|
||||||
|
|||||||
Reference in New Issue
Block a user