Merge pull request #51 from nulltask/bugfix

fixed: "git extra update" errors when pwd includes whitespace
This commit is contained in:
TJ Holowaychuk 2011-10-01 08:49:42 -07:00
commit ecb2abae94

View file

@ -9,7 +9,7 @@ update() {
&& git clone --depth 1 http://github.com/visionmedia/git-extras.git \
&& cd git-extras \
&& make install \
&& cd $orig \
&& cd "$orig" \
&& echo "... updated git-extras $VERSION -> $(git extras --version)"
}
@ -24,4 +24,4 @@ case "$1" in
test "$INSTALL" = "y" && update && exit
man git-extras
;;
esac
esac