From 7c699dc2731bf975de2f74b8302f5cae945f8507 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Fri, 20 Mar 2026 00:57:59 +0100 Subject: [PATCH] Fix printf statement in run.sh --- run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run.sh b/run.sh index 7ce05dc..7464415 100755 --- a/run.sh +++ b/run.sh @@ -63,7 +63,7 @@ resolve_torch_flavor() { printf '%s\n' "default" ;; default|cpu|cuda|rocm|rocm6.4) - printf '%s\n' "%s" "$HEIMGEIST_TORCH_FLAVOR" + printf '%s\n' "$HEIMGEIST_TORCH_FLAVOR" ;; *) echo "Unsupported HEIMGEIST_TORCH_FLAVOR '$HEIMGEIST_TORCH_FLAVOR'. Use auto, default, cpu, cuda, rocm, or rocm6.4." >&2