mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-16 23:41:43 +00:00
fix(install.sh): redirect stdin from /dev/tty on exec so wizard gets terminal, not exhausted pipe
This commit is contained in:
parent
29fa7c0f75
commit
fa1c412912
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ read -r answer </dev/tty
|
|||
|
||||
if [ -z "$answer" ] || [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
|
||||
echo ""
|
||||
exec "$LITELLM_BIN" --setup
|
||||
exec "$LITELLM_BIN" --setup </dev/tty
|
||||
else
|
||||
echo ""
|
||||
header "Quick start:"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue