From 6b3cc81caef5b02c74267a73b03d6bcbc2386397 Mon Sep 17 00:00:00 2001 From: Daniel Brunner Date: Sat, 18 Sep 2021 23:38:55 +0200 Subject: [PATCH] Fixed bash syntax issues --- action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index c29e2d7..2df589d 100644 --- a/action.yml +++ b/action.yml @@ -18,9 +18,9 @@ runs: run: | if [[ ! -z "${{ inputs.repo }}" ]] then - REPO_ARGS="-C \"${{ inputs.repo }}\"" + REPO_ARGS=-C "${{ inputs.repo }}" else - REPO_ARGS="" + REPO_ARGS= fi SUBMODULES="$(git $REPO_ARGS submodule)"