File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -20,12 +20,12 @@ if gitver == "notfound"
20
20
if is_linux () && Sys. ARCH === :x86_64
21
21
# use conda for a non-root option
22
22
gitver = " 2.8.2"
23
- baseurl = " https ://anaconda.org/conda-forge/git/$gitver /download/linux-64/"
23
+ baseurl = " http ://anaconda.org/conda-forge/git/$gitver /download/linux-64/"
24
24
filename = " git-$gitver -2.tar.bz2"
25
25
elseif is_linux () && (Sys. ARCH in (:i686 , :i586 , :i486 , :i386 ))
26
26
# conda-forge doesn't build for 32 bit linux
27
27
gitver = " 2.6.4"
28
- baseurl = " https ://anaconda.org/anaconda/git/$gitver /download/linux-32/"
28
+ baseurl = " http ://anaconda.org/anaconda/git/$gitver /download/linux-32/"
29
29
filename = " git-$gitver -0.tar.bz2"
30
30
elseif is_windows ()
31
31
# download and extract portablegit
@@ -58,8 +58,8 @@ if gitver == "notfound"
58
58
# by setting an environment variable in deps.jl
59
59
catch err
60
60
error (" Could not automatically install git, error was: $err \n " *
61
- (isempty (downloadurl ) ? " Try installing git via your system " *
62
- " package manager then running\n Pkg.build(\" Git\" )" : " " ))
61
+ (is_windows ( ) ? " " : " Try installing git via your " *
62
+ " system package manager then running\n Pkg.build(\" Git\" )" ))
63
63
end
64
64
else
65
65
try
You can’t perform that action at this time.
0 commit comments