We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ac23c9 commit f11f33fCopy full SHA for f11f33f
examples/whisper.nvim/whisper.nvim
@@ -32,7 +32,7 @@ model="base.en"
32
33
# export the path to the whisper.cpp repo in the WHISPER_CPP_HOME env variable
34
# https://github.com/ggerganov/whisper.cpp
35
-cd ${WHISPER_CPP_HOME}
+cd "${WHISPER_CPP_HOME}"
36
37
if [ ! -f ./stream ] ; then
38
echo "whisper.nvim: the 'stream' executable was not found! WHISPER_CPP_HOME=${WHISPER_CPP_HOME}" > /tmp/whisper.nvim
models/download-ggml-model.cmd
@@ -33,7 +33,7 @@ goto :eof
:download_model
echo Downloading ggml model %model%...
-cd %models_path%
+cd "%models_path%"
if exist "ggml-%model%.bin" (
39
echo Model %model% already exists. Skipping download.
0 commit comments