Update of /cvsroot/squirrel-sql/mavenize
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv29082
Modified Files:
mavenize.pl
Log Message:
Replaces copies of mac-related files with moves to preserve history.
Index: mavenize.pl
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/mavenize.pl,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** mavenize.pl 20 Mar 2010 21:23:41 -0000 1.22
--- mavenize.pl 20 Mar 2010 22:04:09 -0000 1.23
***************
*** 37,40 ****
--- 37,41 ----
$websiteDir = $topDir . "/web-site";
$testDir = $topDir . "/test";
+ $macDir = $topDir . "/mac";
$onlyCopyPoms = 0;
***************
*** 678,681 ****
--- 679,688 ----
`tar --exclude .svn -cvf - squirrelsql-macosx-installer | ( cd $installerDir; tar -xvf -)`;
+ `svn move $macDir/Contents/Info.plist $installerDir/squirrelsql-macosx-installer/src/main/resources`;
+ `svn move $macDir/Contents/Resources/acorns.icns $installerDir/squirrelsql-macosx-installer/src/main/resources`;
+
+ chdir($topDir) or die "Couldn't change directory to $topDir: $!\n";
+ `svn delete mac`;
+
`cp $mavenizeDir/installer-pom.xml $installerDir/pom.xml`;
|