Update of /cvsroot/squirrel-sql/mavenize
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv19956
Modified Files:
mavenize.pl
Log Message:
make topDir be specified as an argument for portability.
Index: mavenize.pl
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/mavenize.pl,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** mavenize.pl 20 Nov 2009 01:29:23 -0000 1.12
--- mavenize.pl 12 Dec 2009 22:52:43 -0000 1.13
***************
*** 25,29 ****
$mavenizeDir =~ s/\s//g;
! $topDir = "/home/manningr/projects/squirrel_maven2/sql12";
$fwDir = $topDir . "/fw";
$appDir = $topDir . "/app";
--- 25,32 ----
$mavenizeDir =~ s/\s//g;
! $topDir = shift;
! if (! defined $topDir) {
! exit("Must specify top-level dir (absolute path to sql12)");
! }
$fwDir = $topDir . "/fw";
$appDir = $topDir . "/app";
***************
*** 34,38 ****
$websiteDir = $topDir . "/web-site";
! $onlyCopyPoms = 1;
$cache_deps = <<"EOF";
--- 37,41 ----
$websiteDir = $topDir . "/web-site";
! $onlyCopyPoms = 0;
$cache_deps = <<"EOF";
|