Skip to content

Commit d68fb12

Browse files
committed
fix: Orchestrator - Launchers - HuggingFace - Fixed more Dash compatibility
This affects old PyTorch container images.
1 parent 6f5f7cb commit d68fb12

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cloud_pipelines_backend/launchers/huggingface_launchers.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,10 +231,10 @@ def get_exit_code_path() -> str:
231231
232232
# Installing uv
233233
url="https://astral.sh/uv/install.sh"
234-
if command -v curl &>/dev/null; then
234+
if command -v curl 2>/dev/null; then
235235
# -s: silent, -L: follow redirects
236236
curl -s -L "$url" | sh
237-
elif command -v wget &>/dev/null; then
237+
elif command -v wget 2>/dev/null; then
238238
wget -q -O - "$url" | sh
239239
else
240240
echo "Error: Neither curl nor wget found." >&2

0 commit comments

Comments
 (0)