Browse Source

fix(_default): add quotes around fully qualified first call to brew

Kyle P Davis 6 years ago
parent
commit
79a21277f0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      gimmes/_default

+ 1 - 1
gimmes/_default

@@ -7,7 +7,7 @@ if ! has "$GIMME"; then
 
 	if [[ "$OS" = "Darwin" ]]; then
 		if ! has brew; then
-			[[ -d "$HOME/homebrew" ]]  ||  (mkdir "$HOME/homebrew" 2>/dev/null  &&  curl -L "https://github.com/Homebrew/homebrew/tarball/master" | tar xz --strip 1 -C "$HOME/homebrew"  &&  $HOME/homebrew/bin/brew update)
+			[[ -d "$HOME/homebrew" ]]  ||  (mkdir "$HOME/homebrew" 2>/dev/null  &&  curl -L "https://github.com/Homebrew/homebrew/tarball/master" | tar xz --strip 1 -C "$HOME/homebrew"  &&  "$HOME/homebrew/bin/brew" update)
 		fi
 	else
 		if ! has apt-get; then