fix: ensure SCRIPT_DIR exists
This commit is contained in:
parent
f8044dbe23
commit
74a45912c4
2 changed files with 7 additions and 0 deletions
|
@ -3,6 +3,10 @@
|
|||
VERSION="$1"
|
||||
UNSUPPORTED_MSG="$2"
|
||||
|
||||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
SCRIPTS_DIR="$CURRENT_DIR/../scripts"
|
||||
HELPERS_DIR="$SCRIPTS_DIR/helpers"
|
||||
|
||||
source "$SCRIPTS_DIR/tmux_cmd_path.sh"
|
||||
|
||||
|
||||
|
|
|
@ -1,3 +1,6 @@
|
|||
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
SCRIPTS_DIR="$CURRENT_DIR/../../scripts"
|
||||
HELPERS_DIR="$SCRIPTS_DIR/helpers"
|
||||
source "$SCRIPTS_DIR/tmux_cmd_path.sh"
|
||||
|
||||
_has_emacs_mode_keys() {
|
||||
|
|
Loading…
Reference in a new issue