Fixes broken tmux-sessionator-path on mymini

This commit is contained in:
2024-04-08 10:13:38 -04:00
parent a344d29ca4
commit 9c6d5a1e91
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@
# Adapted from: https://github.com/ThePrimeagen/.dotfiles/blob/master/bin/.local/scripts/tmux-sessionizer
DEBUG=
debug="${DEBUG}"
#################### Options ####################
@@ -15,7 +15,7 @@ zparseopts -D -- \
#################### Helpers ####################
function debug_print {
if [ -n "$DEBUG" ]; then
if [ -n "$debug" ]; then
echo "DEBUG: $1"
fi
}