From 8f365d0521900bb3056412ce8926b392646aa57f Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sat, 29 Jan 2011 19:52:01 -0800 Subject: [PATCH] ALWAYS complain if I couldn't run gnuplot --- bin/feedGnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedGnuplot b/bin/feedGnuplot index db39608..02db601 100755 --- a/bin/feedGnuplot +++ b/bin/feedGnuplot @@ -12,7 +12,7 @@ use Text::ParseWords; our $VERSION = '1.02'; -open(GNUPLOT_VERSION, 'gnuplot --version |'); +open(GNUPLOT_VERSION, 'gnuplot --version |') or die "Couldn't run gnuplot"; my ($gnuplotVersion) = =~ /gnuplot\s*(\d*\.\d*)/; if(!$gnuplotVersion) {