Skip to content

Commit 56233b5

Browse files
authored
Merge pull request #455 from SaschaHenning/master
Fix RUNNER_WORKDIR not created if part of the folder structure is nonexisting
2 parents d49ef96 + 2b0f619 commit 56233b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ configure_runner() {
150150
--replace \
151151
"${ARGS[@]}"
152152

153-
[[ ! -d "${_RUNNER_WORKDIR}" ]] && mkdir "${_RUNNER_WORKDIR}"
153+
[[ ! -d "${_RUNNER_WORKDIR}" ]] && mkdir -p "${_RUNNER_WORKDIR}"
154154

155155
}
156156

0 commit comments

Comments
 (0)