From: Georgi Gerganov Date: Fri, 23 Dec 2022 09:11:38 +0000 (+0200) Subject: models : fix support for spaces in path (close #315) X-Git-Tag: upstream/1.7.4~1678 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=77226aa89d9cc381aa21166213bd082d5fe06621;p=pkg%2Fggml%2Fsources%2Fwhisper.cpp models : fix support for spaces in path (close #315) --- diff --git a/models/download-ggml-model.sh b/models/download-ggml-model.sh index cf546230..7075080c 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" )