Browse Source

[New] Add `--auto` to git gc to speed up install & upgrade

Peter Dave Hello 8 years ago committed by Jordan Harband
parent
commit
38a568c9c9
No known key found for this signature in database
GPG Key ID: 64A196AEE0916D55
  1. 2
      install.sh

2
install.sh

@ -125,7 +125,7 @@ install_nvm_from_git() { @@ -125,7 +125,7 @@ install_nvm_from_git() {
fi
echo "=> Compressing and cleaning up git repository"
if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" gc --aggressive --prune=now ; then
if ! command git --git-dir="$INSTALL_DIR"/.git --work-tree="$INSTALL_DIR" gc --auto --aggressive --prune=now ; then
echo >&2 "Your version of git is out of date. Please update it!"
fi
return

Loading…
Cancel
Save