]> mj.ucw.cz Git - moe.git/commitdiff
A couple of fixes to library paths.
authorMartin Mares <mj@ucw.cz>
Tue, 5 Jun 2007 15:28:48 +0000 (17:28 +0200)
committerMartin Mares <mj@ucw.cz>
Tue, 5 Jun 2007 15:28:48 +0000 (17:28 +0200)
submit/remote-status
submit/remote-submit

index aa13379e6d5fc78d1193f28eae198d0df892161b..21d8b95f845bc676c243fe13e5bd2b97697b4177 100755 (executable)
@@ -6,8 +6,8 @@ use warnings;
 BEGIN {
        defined $ENV{"MO_ROOT"} or die "Please set MO_ROOT to the contest root directory first.\n";
 }
-use lib $ENV{"MO_ROOT"} . "/lib/perl5";
-use lib ".";           ### FIXME
+use lib $ENV{"MO_ROOT"} . "/submit";
+use lib $ENV{"MO_ROOT"} . "/submit/lib/perl5";
 
 use MO::Submit;
 use Sherlock::Object;
index 543ed7a4bb5d77c81aaaf3185482ac05d411604b..20917087b7f63b8f3ffa49c35827b25ca1841c62 100755 (executable)
@@ -6,8 +6,8 @@ use warnings;
 BEGIN {
        defined $ENV{"MO_ROOT"} or die "Please set MO_ROOT to the contest root directory first.\n";
 }
-use lib $ENV{"MO_ROOT"} . "/lib/perl5";
-use lib ".";           ### FIXME
+use lib $ENV{"MO_ROOT"} . "/submit";
+use lib $ENV{"MO_ROOT"} . "/submit/lib/perl5";
 
 use MO::Submit;
 use Sherlock::Object;