From 7d2dc62a0c91467010e0d7c6e56ccc6cbb12b080 Mon Sep 17 00:00:00 2001 From: Bruno Sutic Date: Thu, 12 Feb 2015 15:45:16 +0100 Subject: [PATCH] Bugfix: helper files not loaded --- CHANGELOG.md | 1 + resurrect_auto.tmux | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) 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)"