We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fa2ed1 commit 7a37ff9Copy full SHA for 7a37ff9
2 files changed
install.sh
@@ -223,8 +223,7 @@ start_ollama_now() {
223
nohup ollama serve >/tmp/ollama-serve.log 2>&1 &
224
local pid=$!
225
# Give it a moment, then probe.
226
- local tries
227
- for tries in $(seq 1 20); do
+ for _ in $(seq 1 20); do
228
if ollama_daemon_up; then
229
ok "ollama serve is up (pid $pid; log: /tmp/ollama-serve.log)"
230
return 0
run.sh
@@ -77,8 +77,7 @@ start_ollama_now() {
77
# shellcheck disable=SC2069
78
79
80
81
82
83
84
0 commit comments