Skip to content

Commit a34964f

Browse files
committed
fix typo
1 parent 92d25ad commit a34964f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

features/src/openmpi/devcontainer-feature.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "OpenMPI",
33
"id": "openmpi",
4-
"version": "25.6.2",
4+
"version": "25.6.3",
55
"description": "A feature to install OpenMPI with optional CUDA and UCX support",
66
"options": {
77
"version": {

features/src/openmpi/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ build_and_install_openmpi() {
8282
local -a cuda_args=();
8383
if test "${ENABLE_CUDA:-}" = 1; then
8484
cuda_args+=(--with-cuda="${CUDA_HOME:-/usr/local/cuda}");
85-
cuda_args+=(--with-cuda-libdir="${CUDA_HOME:-/usr/local/cuda}/lib64/stubs}");
85+
cuda_args+=(--with-cuda-libdir="${CUDA_HOME:-/usr/local/cuda}/lib64/stubs");
8686
fi
8787

8888
IFS=" " read -r -a openmpi_dev_deps <<< "$(install_openmpi_deps)";

0 commit comments

Comments
 (0)