diff --git a/lib/entrypoint.sh b/lib/entrypoint.sh index 064b3a11..33cb60bb 100755 --- a/lib/entrypoint.sh +++ b/lib/entrypoint.sh @@ -1711,7 +1711,8 @@ BuildFileList() ################################################ # Get the Array of files changed in the comits # ################################################ - RAW_FILE_ARRAY=($(cd "$GITHUB_WORKSPACE" || exit; git diff --name-only master..$GITHUB_SHA 2>&1)) + # shellcheck disable=SC2207 + RAW_FILE_ARRAY=($(cd "$GITHUB_WORKSPACE" || exit; git diff --name-only "master..$GITHUB_SHA" 2>&1)) ####################### # Load the error code #