Improve error messages

This commit is contained in:
retropikzel 2026-02-09 16:11:18 +02:00
parent 4d8aaa1809
commit 7e77fbd9fd
1 changed files with 2 additions and 2 deletions

View File

@ -48,11 +48,11 @@ fi
if [ -d "${3}" ]; then if [ -d "${3}" ]; then
if [ -f "${3}" ]; then if [ -f "${3}" ]; then
echo "Path exists" echo "Can not create venv, path exists"
exit 1 exit 1
fi fi
if [ -d "${3}" ]; then if [ -d "${3}" ]; then
echo "Path exists" echo "Can not create venv, path exists"
exit 1 exit 1
fi fi
fi fi