diff options
Diffstat (limited to 'git.sh')
-rwxr-xr-x | git.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,11 +4,11 @@ function status { if [ ! -d "$1" ]; then return fi - DIR=`pwd` + DIR=$(pwd) cd "$1" echo "$2:" - git $CMD - cd $DIR + git "$CMD" + cd "$DIR" } CMD="$*" |