Homebrewインストールエラー -e:4: syntax error, unexpected '<'

"homebrew インストール"などでググって出てくるサイトの多くで

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

上記コマンドを叩く、と紹介されていますが、

正しくは

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go/install)"

でないと、表題のエラーになります。
OS X 10.9 Marveriks現在)

追記

置き場所が変わったようです(2015/01現在)

Whoops, the Homebrew installer has moved! Please instead run:

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

Also, please ask wherever you got this link from to update it to the above.
Thanks!

ということなので

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

となりました。