Fixed bash syntax issues

This commit is contained in:
2021-09-18 23:38:55 +02:00
committed by GitHub
parent 092c100afe
commit 6b3cc81cae

View File

@@ -18,9 +18,9 @@ runs:
run: | run: |
if [[ ! -z "${{ inputs.repo }}" ]] if [[ ! -z "${{ inputs.repo }}" ]]
then then
REPO_ARGS="-C \"${{ inputs.repo }}\"" REPO_ARGS=-C "${{ inputs.repo }}"
else else
REPO_ARGS="" REPO_ARGS=
fi fi
SUBMODULES="$(git $REPO_ARGS submodule)" SUBMODULES="$(git $REPO_ARGS submodule)"