From ffd73a80a59dad485201682060b6ddfb1a4875a8 Mon Sep 17 00:00:00 2001 From: Lucas Gravley <29484535+admiralAwkbar@users.noreply.github.com> Date: Fri, 25 Oct 2019 14:25:31 -0500 Subject: [PATCH] adding more code --- lib/entrypoint.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 #