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: |
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)"