19 if $macosx ; then
20 SQUIRREL_SQL_HOME=`dirname "$0"`/Contents/Resources/Java'
should be (missing opening single tick) :
20 SQUIRREL_SQL_HOME=`dirname "$0"`'/Contents/Resources/Java'
I have verified this bug and its solution. The file is
sql12/build/plainzip/squirrel-sql.sh
To correct it:
1) There is an errant apostrophe (`) on the first line of the file. It should be removed.
2) On line 20, an apostrophe (') should be added before the phrase "/Contents/Resources/Java"
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I have verified this bug and its solution. The file is
sql12/build/plainzip/squirrel-sql.sh
To correct it:
1) There is an errant apostrophe (`) on the first line of the file. It should be removed.
2) On line 20, an apostrophe (') should be added before the phrase "/Contents/Resources/Java"
Fixed in CVS.