Trying to fix Travis test

This commit is contained in:
Giorgio Calderone 2020-03-19 18:56:27 +01:00
parent ed9b84d166
commit 11b6a30a60

View File

@ -80,6 +80,7 @@ end
"""
function CheckGnuplotVersion(cmd::AbstractString)
icmd = `$(cmd) --version`
@info "Checking gnuplot version with command: " icmd
proc = open(`$icmd`, read=true)
s = String(read(proc))
@ -100,7 +101,7 @@ function CheckGnuplotVersion(cmd::AbstractString)
if ver < v"4.7"
error("gnuplot ver. >= 4.7 is required, but " * string(ver) * " was found.")
end
#@info " Gnuplot version: " * string(ver)
@info " Gnuplot version: " * string(ver)
return ver
end