From: Silvio Rhatto Date: Thu, 20 Feb 2014 16:41:01 +0000 (-0300) Subject: Do not use RELATIVE_PATH on git action X-Git-Tag: 0.3.1~28 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=a3061e30e6cfaef2bd40afd91866aac0f7062fa8;p=keyringer.git Do not use RELATIVE_PATH on git action --- diff --git a/ChangeLog b/ChangeLog index 71f541d..67b0407 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2014-02-20 - Silvio Rhatto + Do not use RELATIVE_PATH on git action + Fix test output at xclip action 2014-02-20 - 0.3 - Silvio Rhatto 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"