From 77226aa89d9cc381aa21166213bd082d5fe06621 Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Fri, 23 Dec 2022 11:11:38 +0200 Subject: [PATCH] models : fix support for spaces in path (close #315) --- models/download-ggml-model.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/download-ggml-model.sh b/models/download-ggml-model.sh index cf54623..7075080 100755 --- a/models/download-ggml-model.sh +++ b/models/download-ggml-model.sh @@ -19,7 +19,7 @@ function get_script_path() { fi } -models_path=$(get_script_path) +models_path="$(get_script_path)" # Whisper models models=( "tiny.en" "tiny" "base.en" "base" "small.en" "small" "medium.en" "medium" "large-v1" "large" )