Spaces:
Sleeping
Sleeping
models : handle paths with spaces in download script (close #1038)
Browse files
models/download-ggml-model.sh
CHANGED
|
@@ -54,7 +54,7 @@ fi
|
|
| 54 |
|
| 55 |
printf "Downloading ggml model $model from '$src' ...\n"
|
| 56 |
|
| 57 |
-
cd $models_path
|
| 58 |
|
| 59 |
if [ -f "ggml-$model.bin" ]; then
|
| 60 |
printf "Model $model already exists. Skipping download.\n"
|
|
|
|
| 54 |
|
| 55 |
printf "Downloading ggml model $model from '$src' ...\n"
|
| 56 |
|
| 57 |
+
cd "$models_path"
|
| 58 |
|
| 59 |
if [ -f "ggml-$model.bin" ]; then
|
| 60 |
printf "Model $model already exists. Skipping download.\n"
|