Fix printf statement in run.sh

This commit is contained in:
2026-03-20 00:57:59 +01:00
parent 7b8fa22b0e
commit 7c699dc273

2
run.sh
View File

@@ -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