diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rwxr-xr-x | lib/keyringer/actions/mv | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -1,8 +1,10 @@ 2014-02-20 - Silvio Rhatto <rhatto@riseup.net> + Fixed secret paths at mv action + Do not use RELATIVE_PATH on git action - Fix test output at xclip action + Fixed test output at xclip action 2014-02-20 - 0.3 - Silvio Rhatto <rhatto@riseup.net> diff --git a/lib/keyringer/actions/mv b/lib/keyringer/actions/mv index aaf6772..daac7b0 100755 --- a/lib/keyringer/actions/mv +++ b/lib/keyringer/actions/mv @@ -25,4 +25,4 @@ if ! echo "$ORIG" | grep -q '*' && [ ! -e "$KEYDIR/$RELATIVE_PATH/$ORIG" ]; then fi # Run move command -keyringer_exec git "$BASEDIR" mv $ORIG $FILE +keyringer_exec git "$BASEDIR" mv "keys/$RELATIVE_PATH/$ORIG" "keys/$FILE" |