From 9452ab40e3381a125e948e00a578d242058c26c8 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Fri, 16 Sep 2016 16:17:00 -0700 Subject: [PATCH 1/2] Make `git` invocations not use `Base.Git`. --- src/API.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/API.jl b/src/API.jl index 58cd955..3baee4c 100644 --- a/src/API.jl +++ b/src/API.jl @@ -644,9 +644,9 @@ end function versioninfo(;verbose=false) Base.versioninfo(verbose) - Base.Git.run(`log -1 '--pretty=format:Homebrew git revision %h; last commit %cr'`; dir=joinpath(prefix())) - Base.Git.run(`log -1 '--pretty=format:homebrew/core git revision %h; last commit %cr'`; dir=joinpath(prefix(), "Library", "Taps", "homebrew", "homebrew-core")) - Base.Git.run(`log -1 '--pretty=format:staticfloat/juliadeps revision %h; last commit %cr'`; dir=joinpath(prefix(), "Library", "Taps", "staticfloat", "homebrew-juliadeps")) + run(Cmd(`git log -1 '--pretty=format:Homebrew git revision %h; last commit %cr'`; dir=joinpath(prefix()))) + run(Cmd(`git log -1 '--pretty=format:homebrew/core git revision %h; last commit %cr'`; dir=joinpath(prefix(), "Library", "Taps", "homebrew", "homebrew-core"))) + run(Cmd(`git log -1 '--pretty=format:staticfloat/juliadeps revision %h; last commit %cr'`; dir=joinpath(prefix(), "Library", "Taps", "staticfloat", "homebrew-juliadeps"))) installed_pkgs = list() println("\n$(length(installed_pkgs)) total packages installed:") From 1b8543020de0d8291bb96354e65430825d9549b4 Mon Sep 17 00:00:00 2001 From: Elliot Saba Date: Fri, 16 Sep 2016 22:32:39 -0700 Subject: [PATCH 2/2] Add 0.5 Travis testing --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 82b59a1..5f17aed 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ os: - osx julia: - 0.4 + - 0.5 - nightly notifications: email: false