From 8b9db3a29517c0dad6cf26b979f7a60fd0abb71a Mon Sep 17 00:00:00 2001 From: Suchintan Date: Sun, 24 Mar 2024 11:37:05 -0400 Subject: [PATCH] Fix bug in setup (#121) --- setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.sh b/setup.sh index bbd75351..e5f9dafc 100755 --- a/setup.sh +++ b/setup.sh @@ -14,7 +14,7 @@ command_exists() { ensure_required_commands() { # Ensure required commands are available - for cmd in poetry do + for cmd in poetry; do if ! command_exists "$cmd"; then echo "Error: $cmd is not installed." >&2 exit 1