From ab30940e5085ecd13c551e6ae372b4fdcee42475 Mon Sep 17 00:00:00 2001 From: Ian Rodney Date: Mon, 5 Oct 2020 16:18:18 -0700 Subject: [PATCH] Use 'mkdir -p' in manylinux (#11219) --- python/build-wheel-manylinux1.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/build-wheel-manylinux1.sh b/python/build-wheel-manylinux1.sh index 685097480..4855b5830 100755 --- a/python/build-wheel-manylinux1.sh +++ b/python/build-wheel-manylinux1.sh @@ -41,7 +41,7 @@ pushd python/ray/dashboard/client popd set -x -mkdir .whl +mkdir -p .whl for ((i=0; i<${#PYTHONS[@]}; ++i)); do PYTHON=${PYTHONS[i]} NUMPY_VERSION=${NUMPY_VERSIONS[i]}