We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f86119 commit ed2b3e1Copy full SHA for ed2b3e1
.kokoro/trampoline_v2.sh
@@ -286,7 +286,9 @@ if [[ $# -ge 1 ]]; then
286
readonly commands=("${@:1}")
287
else
288
log_yellow "Running the tests in a Docker container."
289
- readonly commands=("/v/${TRAMPOLINE_BUILD_FILE}")
+ # Temporary workaround to remove unnecessary prefix.
290
+ real_build_file=${TRAMPOLINE_BUILD_FILE#"github/python-docs-samples/"}
291
+ readonly commands=("/v/${real_build_file}")
292
fi
293
294
echo docker run "${docker_flags[@]}" "${TRAMPOLINE_IMAGE}" "${commands[@]}"
0 commit comments