This is an automated email from the ASF dual-hosted git repository. areusch pushed a commit to branch areusch/freeze-dependencies in repository https://gitbox.apache.org/repos/asf/tvm.git
commit 7bcdb5ba1c4f24a90b6f9743aac1f96dd6b6193b Author: Andrew Reusch <[email protected]> AuthorDate: Thu May 12 16:35:23 2022 -0700 deal with % in BUILD_TAG --- docker/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build.sh b/docker/build.sh index 6f9c352600..f495bba8d0 100755 --- a/docker/build.sh +++ b/docker/build.sh @@ -165,7 +165,7 @@ function upsearch () { # Set up WORKSPACE and BUILD_TAG. Jenkins will set them for you or we pick # reasonable defaults if you run it outside of Jenkins. WORKSPACE="${WORKSPACE:-${SCRIPT_DIR}/../}" -BUILD_TAG="${BUILD_TAG:-tvm}" +BUILD_TAG=$(echo "${BUILD_TAG:-tvm}" | sed 's/-/--/g' | sed 's/%/-/g') DOCKER_IMAGE_TAG="${DOCKER_IMAGE_TAG:-latest}" # Determine the docker image name
