Adding it up

This commit is contained in:
Lucas Gravley 2019-11-07 08:23:17 -06:00
parent f4834ab5e9
commit 7ab8090b30
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
---
#############################
#############################
## JavaScript Linter rules ##

View file

@ -1493,7 +1493,7 @@ Eslint()
################################
# Lint the file with the rules #
################################
LINT_CMD=$(eslint -c "$JAVASCRIPT_LINTER_RULES" "$FILE" 2>&1)
LINT_CMD=$(cd "$GITHUB_WORKSPACE" | exit; eslint -c "$JAVASCRIPT_LINTER_RULES" "$FILE" 2>&1)
#######################
# Load the error code #