Update TestCodebase() for PowerShell

This commit is contained in:
Kevin Rowlandson 2020-07-01 08:27:29 +01:00
parent 5f2cd423a4
commit 509f767b71
No known key found for this signature in database
GPG key ID: F33348ACAE26BE84

View file

@ -390,7 +390,7 @@ function TestCodebase()
# Lint the file with the rules #
################################
# Need to append "'" to make the pwsh call syntax correct, also exit with exit code from inner subshell
LINT_CMD=$(cd "$GITHUB_WORKSPACE/$TEST_CASE_FOLDER" || exit; pwsh -c "$LINTER_COMMAND $FILE"; exit $? 2>&1)
LINT_CMD=$(cd "$GITHUB_WORKSPACE/$TEST_CASE_FOLDER" || exit; pwsh -c "($LINTER_COMMAND $FILE)"; exit $? 2>&1)
else
################################
# Lint the file with the rules #