Fix bug in setup (#121)

This commit is contained in:
Suchintan
2024-03-24 11:37:05 -04:00
committed by GitHub
parent 384e4aca40
commit 8b9db3a295

View File

@@ -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