Skip to content
Snippets Groups Projects
Commit a3061e30 authored by rhatto's avatar rhatto
Browse files

Do not use RELATIVE_PATH on git action

parent 82f7c084
No related branches found
No related tags found
No related merge requests found
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>
......
......@@ -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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment