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 c07a226081ea3ab99d2b67338b90be0f0be860c0 Author: Andrew Reusch <[email protected]> AuthorDate: Thu May 12 16:21:36 2022 -0700 Fix unbound variable error --- docker/build-base-images.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/build-base-images.sh b/docker/build-base-images.sh index 8cfb1dd480..84366c4880 100755 --- a/docker/build-base-images.sh +++ b/docker/build-base-images.sh @@ -3,7 +3,7 @@ # Build base images (one per Python architecture) used in building the remaining TVM docker images. set -eux -IMAGES=( ) +declare -a IMAGES while [ "${1+x}" == "x" ]; do IMAGES=( "${IMAGES[@]}" "$(dirname $0)/Dockerfile.base_$1" ) shift
