From 15f2f88565bf2fb88ca72cf4a7d8c6e60d3942b8 Mon Sep 17 00:00:00 2001 From: oliverhnat Date: Sat, 4 Oct 2025 15:32:28 +0200 Subject: [PATCH] fix(tmuxinator): fix directory does not exist when it exists error --- omz-custom/tmux-sessions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/omz-custom/tmux-sessions.sh b/omz-custom/tmux-sessions.sh index 6009f39..ffb27c0 100644 --- a/omz-custom/tmux-sessions.sh +++ b/omz-custom/tmux-sessions.sh @@ -12,7 +12,7 @@ function mx() { return 1 fi - if [ -f "$PROJECT_DIR" ]; then + if [ -d "$PROJECT_DIR" ]; then else echo "Directory does not exist: $PROJECT_DIR" return 1