From 11b6a30a60e34edfac4e9decdce972b8846525bd Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Thu, 19 Mar 2020 18:56:27 +0100 Subject: [PATCH] Trying to fix Travis test --- src/Gnuplot.jl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Gnuplot.jl b/src/Gnuplot.jl index 99ee308..3d10398 100644 --- a/src/Gnuplot.jl +++ b/src/Gnuplot.jl @@ -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