From 8d374c2d92433dd60da127bf7c2b7eb64b12888a Mon Sep 17 00:00:00 2001 From: Graham Knop Date: Fri, 2 Jul 2010 00:22:56 -0500 Subject: [PATCH] move -inc to better location --- lib/WebGUI/Command/upgrade.pm | 2 +- sbin/webgui.pl | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/WebGUI/Command/upgrade.pm b/lib/WebGUI/Command/upgrade.pm index 58d09182c..4967715b3 100644 --- a/lib/WebGUI/Command/upgrade.pm +++ b/lib/WebGUI/Command/upgrade.pm @@ -14,7 +14,7 @@ use WebGUI::Command -command; use strict; use warnings; -use WebGUI::Paths -inc; +use WebGUI::Paths; use WebGUI::Upgrade; sub opt_spec { diff --git a/sbin/webgui.pl b/sbin/webgui.pl index 35e56366b..ce3ecf7f3 100755 --- a/sbin/webgui.pl +++ b/sbin/webgui.pl @@ -2,6 +2,7 @@ use strict; use warnings; +use WebGUI::Paths -inc; use WebGUI::Command; WebGUI::Command->run;