ggerganov commited on
Commit
097a82d
·
unverified ·
1 Parent(s): 16846f8

models : handle paths with spaces in download script (close #1038)

Browse files
Files changed (1) hide show
  1. models/download-ggml-model.sh +1 -1
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"