From 470de6edb4eddc700b8ec5d09fcb2657d0085d1f Mon Sep 17 00:00:00 2001 From: breadtk <1126756+breadtk@users.noreply.github.com> Date: Sat, 2 Mar 2024 16:04:01 -0800 Subject: [PATCH] Verify that poetry was setup correctly --- setup.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.sh b/setup.sh index 45f706a..94c3394 100755 --- a/setup.sh +++ b/setup.sh @@ -1,5 +1,12 @@ #!/bin/bash +# Verify that poetry is installed correctly. +poetry --version >/dev/null 2>&1 +if [ $? -ne 0 ]; then + echo 'Poetry may not be installed correctly. Verify that poetry is in your $PATH.' + exit 1 +fi + # Check if pyproject.toml exists in the current directory if [ ! -f "pyproject.toml" ]; then echo "Poetry could not find a pyproject.toml file in the current directory or its parents."