aboutsummaryrefslogtreecommitdiff
path: root/share/keyringer/git
diff options
context:
space:
mode:
Diffstat (limited to 'share/keyringer/git')
-rwxr-xr-xshare/keyringer/git6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/keyringer/git b/share/keyringer/git
index 439198a..cd2a188 100755
--- a/share/keyringer/git
+++ b/share/keyringer/git
@@ -5,12 +5,12 @@
# Load functions
LIB="`dirname $0`/../../lib/keyringer/functions"
-source $LIB || exit 1
+source "$LIB" || exit 1
# Aditional parameters
CWD="`pwd`"
# Run git command
shift
-mkdir -p $BASEDIR && cd $BASEDIR && git $*
-cd $CWD
+mkdir -p "$BASEDIR" && cd "$BASEDIR" && git $*
+cd "$CWD"