We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65bafde commit 0368d8eCopy full SHA for 0368d8e
cloud_pipelines_backend/launchers/huggingface_launchers.py
@@ -223,7 +223,12 @@ def get_exit_code_path() -> str:
223
input_download_code = "\n".join(input_download_lines)
224
225
artifact_uploader_script = f"""
226
-set -e -x -o pipefail
+set -e -x
227
+# Workaround for Dash and other shells that do not support -o pipefail.
228
+if (set -o pipefail 2>/dev/null); then
229
+ set -o pipefail
230
+fi
231
+
232
# Installing uv
233
url="https://astral.sh/uv/install.sh"
234
if command -v curl &>/dev/null; then
0 commit comments