fix(tmuxinator): fix directory does not exist when it exists error

This commit is contained in:
2025-10-04 15:32:28 +02:00
parent 3790e1e28a
commit 15f2f88565

View File

@@ -12,7 +12,7 @@ function mx() {
return 1 return 1
fi fi
if [ -f "$PROJECT_DIR" ]; then if [ -d "$PROJECT_DIR" ]; then
else else
echo "Directory does not exist: $PROJECT_DIR" echo "Directory does not exist: $PROJECT_DIR"
return 1 return 1