Skip to content

Commit

Permalink
Bugfix: invalid params for "save_sidebar_width"
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruno Sutic committed Sep 5, 2014
1 parent 838b7fa commit 8c841c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

### master
- bugfix: invalid params for 'save_sidebar_width' script

### v0.6.0, Sep 05, 2014
- more options for customizing tree sidebar
Expand Down
2 changes: 1 addition & 1 deletion scripts/save_sidebar_width.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
source "$CURRENT_DIR/helpers.sh"
source "$CURRENT_DIR/variables.sh"

DIR_PATH="$1"
DIR_PATH="$(echo "$1" | tail -1)" # fixes a bug with invalid param
WIDTH="$2"
delimiter=$'\t'

Expand Down

0 comments on commit 8c841c7

Please sign in to comment.