Skip to content

Commit 44f3c44

Browse files
committed
Fix ucx
Signed-off-by: ZhanruiSunCh <184402041+ZhanruiSunCh@users.noreply.github.com>
1 parent ed789a9 commit 44f3c44

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/common/install_ucx.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ if [ -n "${GITHUB_MIRROR}" ]; then
66
GITHUB_URL=${GITHUB_MIRROR}
77
fi
88

9-
UCX_VERSION="v1.19.x"
9+
UCX_VERSION="1.19.x"
1010
UCX_INSTALL_PATH="/usr/local/ucx/"
1111
CUDA_PATH="/usr/local/cuda"
1212

1313
rm -rf ${UCX_INSTALL_PATH}
14-
curl -L ${GITHUB_URL}/openucx/ucx/archive/refs/heads/${UCX_VERSION}.tar.gz -o ucx-${UCX_VERSION}.tar.gz
14+
curl -L ${GITHUB_URL}/openucx/ucx/archive/refs/heads/v${UCX_VERSION}.tar.gz -o ucx-${UCX_VERSION}.tar.gz
1515
tar -xzf ucx-${UCX_VERSION}.tar.gz
1616
mv ucx-${UCX_VERSION} ucx
1717
cd ucx

0 commit comments

Comments
 (0)