diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-20 13:47:50 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-20 13:47:50 -0300 |
commit | 324dc0c1433413f739bd64ed7eda0207658bc84f (patch) | |
tree | cd8eb0432ade5d4446f7949b26763a2911b7691f | |
parent | a3061e30e6cfaef2bd40afd91866aac0f7062fa8 (diff) | |
download | keyringer-324dc0c1433413f739bd64ed7eda0207658bc84f.tar.gz keyringer-324dc0c1433413f739bd64ed7eda0207658bc84f.tar.bz2 |
Fixed secret paths at mv action
-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" |