fix typo that broke the gnuplot integration
This commit is contained in:
@@ -60,7 +60,7 @@ public class Gnuplot {
|
|||||||
if (System.getProperty(PROPERTY_GNUPLOT_HOME) != null) {
|
if (System.getProperty(PROPERTY_GNUPLOT_HOME) != null) {
|
||||||
|
|
||||||
if (isWindows()) {
|
if (isWindows()) {
|
||||||
return System.getProperty(PROPERTY_GNUPLOT_HOME) + "\\bin\\+gnuplot.exe";
|
return System.getProperty(PROPERTY_GNUPLOT_HOME) + "\\bin\\gnuplot.exe";
|
||||||
} else {
|
} else {
|
||||||
return System.getProperty(PROPERTY_GNUPLOT_HOME) + "/bin/gnuplot";
|
return System.getProperty(PROPERTY_GNUPLOT_HOME) + "/bin/gnuplot";
|
||||||
}
|
}
|
||||||
@@ -68,7 +68,7 @@ public class Gnuplot {
|
|||||||
if (System.getenv(ENV_GNUPLOT_HOME) != null) {
|
if (System.getenv(ENV_GNUPLOT_HOME) != null) {
|
||||||
|
|
||||||
if (isWindows()) {
|
if (isWindows()) {
|
||||||
return System.getenv(ENV_GNUPLOT_HOME) + "\\bin\\+gnuplot.exe";
|
return System.getenv(ENV_GNUPLOT_HOME) + "\\bin\\gnuplot.exe";
|
||||||
} else {
|
} else {
|
||||||
return System.getenv(ENV_GNUPLOT_HOME) + "/bin/gnuplot";
|
return System.getenv(ENV_GNUPLOT_HOME) + "/bin/gnuplot";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user