Skip to content

Commit 8bb0a5b

Browse files
committed
scripts : fix curl command
1 parent 6298fb2 commit 8bb0a5b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server-llm.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#
2828
# Example:
2929
#
30-
# bash <(curl https://ggml.ai/server-llm.sh)
30+
# bash -c "$(curl -s https://ggml.ai/server-llm.sh)"
3131
#
3232

3333
set -e
@@ -76,7 +76,7 @@ function print_usage {
7676
printf " --n-kv: KV cache size, default is 4096\n"
7777
printf " --verbose: verbose output\n\n"
7878
printf "Example:\n\n"
79-
printf " bash <(curl https://ggml.ai/server-llm.sh)\n\n"
79+
printf ' bash -c "$(curl -s https://ggml.ai/server-llm.sh)"\n\n'
8080
}
8181

8282
while [[ $# -gt 0 ]]; do

0 commit comments

Comments
 (0)