Skip to content

Commit

Permalink
Small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jun 8, 2016
1 parent df95566 commit 2647454
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/private_API.jl
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,21 @@ function install_brew()
end
end

# If git isn't installed, fake Homebrew out with new environment variables
#if !git_installed()
# ENV["git"] = "/usr/bin/true"
#end

# Tap homebrew/core, always and forever
tap("homebrew/core")

# Tap our own "overrides" tap
tap("staticfloat/juliadeps")

if !clt_installed()
# If we don't have the command-lin!e tools installed, then let's grab
if !clt_installed() && !installed("cctools")
# If we don't have the command-line tools installed, then let's grab
# cctools, as we need that to install bottles that need relocation
if !installed("cctools")
add("cctools")
end
add("cctools")
end

if !git_installed() && !installed("git")
# If we don't have git installed, grab it now!
# If we don't have a git available, install it now
add("git")
pop!(ENV, "git")
end
return
end
Expand Down

0 comments on commit 2647454

Please sign in to comment.