SublimeLinter / SublimeLinter-shellcheck

This linter plugin for SublimeLinter provides an interface to shellcheck.
MIT License
210 stars 20 forks source link

brew install not working #2

Closed transat closed 10 years ago

transat commented 10 years ago

brew install https://github.com/Homebrew/homebrew/pull/23839 returns an error: wrong constant name 23839.

NotSqrt commented 10 years ago

Good to know, I had no way to test it....

Did you try the ol' manual way ? If you did, can you provide some steps ?

NotSqrt commented 10 years ago

How about https://github.com/Homebrew/homebrew/pull/21231 instead ?

transat commented 10 years ago

Nope. "brew install https //github.com/Homebrew/homebrew/pull/21231" returns the same error as 23839

zonyitoo commented 10 years ago

I got the same problem on OS X 10.9 with HomeBrew 0.9.5

NotSqrt commented 10 years ago

OK, so unless someone can come up with an easy install instruction for OS X, I will update the doc and say that you need to compile from source just like on linux.

akestner commented 10 years ago

I was able to get shellcheck installed on OS X 10.8.5 and Homebrew 0.9.5 with:

brew install cabal-install
cabal update
cabal install shellcheck
cat <<EOF >> ~/.bash_profile 
# for Cabal
export PATH=${HOME}/.cabal/bin:\${PATH}
EOF
montchr commented 10 years ago

@akestner's method works for me too. Running OS X 10.9.2 and Homebrew 0.9.5.

NotSqrt commented 10 years ago

Thanks ! I'm updating the install instructions by pointing to the shellcheck repository, since they now have much clearer instructions !