diff --git a/entrypoint.sh b/entrypoint.sh index 0829b48..ee2cce7 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -29,10 +29,11 @@ _main() { _switch_to_repository() { echo "INPUT_REPOSITORY value: $INPUT_REPOSITORY"; - cd $INPUT_REPOSITORY; + cd "$INPUT_REPOSITORY"; } _git_is_dirty() { + # shellcheck disable=SC2086 [ -n "$(git status -s -- $INPUT_FILE_PATTERN)" ] }