diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rwxr-xr-x | lib/keyringer/actions/git | 9 |
2 files changed, 3 insertions, 8 deletions
@@ -1,5 +1,7 @@ 2014-02-20 - Silvio Rhatto <rhatto@riseup.net> + Do not use RELATIVE_PATH on git action + Fix test output at xclip action 2014-02-20 - 0.3 - Silvio Rhatto <rhatto@riseup.net> diff --git a/lib/keyringer/actions/git b/lib/keyringer/actions/git index 108ccea..d4e7aa4 100755 --- a/lib/keyringer/actions/git +++ b/lib/keyringer/actions/git @@ -13,12 +13,5 @@ CWD="`pwd`" # Run git command shift -# Set working folder -if [ ! -z "$RELATIVE_PATH" ]; then - WORK="$KEYDIR/$RELATIVE_PATH" -else - WORK="$BASEDIR" -fi - -mkdir -p "$WORK" && cd "$WORK" && git $* +mkdir -p "$BASEDIR" && cd "$BASEDIR" && git $* cd "$CWD" |