aboutsummaryrefslogtreecommitdiff
path: root/tmux
diff options
context:
space:
mode:
Diffstat (limited to 'tmux')
-rwxr-xr-xtmux/.local/bin/tmux-menu.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmux/.local/bin/tmux-menu.sh b/tmux/.local/bin/tmux-menu.sh
index dd6c8d9..a0fa6e2 100755
--- a/tmux/.local/bin/tmux-menu.sh
+++ b/tmux/.local/bin/tmux-menu.sh
@@ -10,7 +10,7 @@ if [ $(echo $SELECTED | grep '.yml') ]; then
else
# Project directory was selected, find its full path (in any of the dirs)
for dir in $PROJECTS_DIRS; do
- FULL_PATH=$(find $dir -maxdepth 1 -type d -name $SELECTED)
+ FULL_PATH=$(find -L $dir -maxdepth 1 -type d -name $SELECTED)
if [ -n "$FULL_PATH" ]; then
# Start project based on the template
tmuxinator start --no-attach -p=$HOME/.config/tmuxinator/.template.yml name=$SELECTED root=$FULL_PATH 2>/dev/null &