From bf0741065dd405fa0d6515098dad6e693df96f23 Mon Sep 17 00:00:00 2001 From: Charlie Sharpsteen Date: Sun, 23 Sep 2012 11:11:21 -0500 Subject: [PATCH] Change syntax of install command Use the original `-e "$()"` syntax instead of `<()` as the latter fails when run as root via `sudo` and produces an incomprehensible error message. Fixes #14923. --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index a2c7fcad7c74..8c6f04f63f8c 100644 --- a/index.html +++ b/index.html @@ -118,7 +118,7 @@

Homebrew

  • Install Homebrew

    -
    ruby <(curl -fsSkL raw.github.com/mxcl/homebrew/go)
    +
    ruby -e "$(curl -fsSkL raw.github.com/mxcl/homebrew/go)"

    Paste that at a Terminal prompt.

    The script explains what it will do and then pauses before it does it. There are more installation options here.