Skip to content

Commit

Permalink
fix(cli): fix curl script
Browse files Browse the repository at this point in the history
  • Loading branch information
heiruwu committed Nov 28, 2024
1 parent 548e241 commit 444b210
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instill/helpers/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
from instill.utils.logger import Logger

bash_script = """
until curl -s -o /dev/null -w "%{{http_code}}" http://localhost:8265 | grep -q "200"; do
until curl -s -o /dev/null -w "%{http_code}" http://localhost:8265 | grep -q "200"; do
sleep 5
done
"""
Expand Down

0 comments on commit 444b210

Please sign in to comment.