Update of /cvsroot/squirrel-sql/mavenize
In directory sfp-cvsdas-3.v30.ch3.sourceforge.com:/tmp/cvs-serv18164
Modified Files:
mavenize.pl
Log Message:
Fixed misspelled acorn.icns and added escape for awk shell var so that Perl doesn't try to interpolate it.
Index: mavenize.pl
===================================================================
RCS file: /cvsroot/squirrel-sql/mavenize/mavenize.pl,v
retrieving revision 1.24
retrieving revision 1.25
diff -C2 -d -r1.24 -r1.25
*** mavenize.pl 21 Mar 2010 15:39:13 -0000 1.24
--- mavenize.pl 21 Mar 2010 18:13:45 -0000 1.25
***************
*** 693,697 ****
`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";
--- 693,697 ----
`svn move $macDir/Contents/Info.plist $installerDir/squirrelsql-macosx-installer/src/main/resources`;
! `svn move $macDir/Contents/Resources/acorn.icns $installerDir/squirrelsql-macosx-installer/src/main/resources`;
chdir($topDir) or die "Couldn't change directory to $topDir: $!\n";
***************
*** 700,704 ****
`cp $mavenizeDir/installer-pom.xml $installerDir/pom.xml`;
! `svn st $installerDir | grep "^\?" | awk '{print $2}' | xargs svn add`;
setSvnIgnore($installerDir);
--- 700,704 ----
`cp $mavenizeDir/installer-pom.xml $installerDir/pom.xml`;
! `svn st $installerDir | grep "^\?" | awk '{print \$2}' | xargs svn add`;
setSvnIgnore($installerDir);
|