diff --git a/CHANGELOG.md b/CHANGELOG.md index ce51816..a5fc788 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,3 +6,4 @@ - do not start saving right after tmux is started - add a check for tmux version to the initializer script - when interval is set to '0' autosave is disabled +- bugfix: helper files not loaded diff --git a/resurrect_auto.tmux b/resurrect_auto.tmux index ea4d7f7..5f56a30 100755 --- a/resurrect_auto.tmux +++ b/resurrect_auto.tmux @@ -2,9 +2,9 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -source "$CURRENT_DIR/helpers.sh" -source "$CURRENT_DIR/variables.sh" -source "$CURRENT_DIR/shared.sh" +source "$CURRENT_DIR/scripts/helpers.sh" +source "$CURRENT_DIR/scripts/variables.sh" +source "$CURRENT_DIR/scripts/shared.sh" save_command_interpolation="#($CURRENT_DIR/scripts/resurrect_auto_save.sh)"