Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Sys.which(), use that to find curl in download() #26559

Merged
merged 4 commits into from
May 22, 2018

Commits on May 21, 2018

  1. Add Sys.which(program_name::AbstractString)

    This acts as a julia-native version of the `which` command found on most
    *nix systems; it searches the path for an executable of the given name,
    returning the absolute path if it exists, and throwing an
    `ArgumentError()` if it does not.
    staticfloat committed May 21, 2018
    Configuration menu
    Copy the full SHA
    11d6f37 View commit details
    Browse the repository at this point in the history
  2. Don't use which curl, use Sys.which("curl")

    This fixes issues on systems that don't have `which` available
    staticfloat committed May 21, 2018
    Configuration menu
    Copy the full SHA
    f76833f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f547a86 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4c7f2cf View commit details
    Browse the repository at this point in the history