Author: ruschein
Date: 2010-10-12 13:07:54 -0700 (Tue, 12 Oct 2010)
New Revision: 22215
Modified:
cytoscape/trunk/distribution/src/main/bin/cytoscape.bat
cytoscape/trunk/distribution/src/main/bin/cytoscape.sh
Log:
Added warning when falling back to using defaults.
Modified: cytoscape/trunk/distribution/src/main/bin/cytoscape.bat
===================================================================
--- cytoscape/trunk/distribution/src/main/bin/cytoscape.bat 2010-10-12
19:52:34 UTC (rev 22214)
+++ cytoscape/trunk/distribution/src/main/bin/cytoscape.bat 2010-10-12
20:07:54 UTC (rev 22215)
@@ -12,6 +12,7 @@
IF EXIST "Cytoscape.vmoptions" GOTO itIsThere
; Run with defaults:
+echo "*** Missing Cytoscape.vmoptions, falling back to using defaults!"
java -Dswing.aatext=true -Dawt.useSystemAAFontSettings=lcd -Xss10M -Xmx1550M
-jar cytoscape.jar -p plugins %*
GOTO end
Modified: cytoscape/trunk/distribution/src/main/bin/cytoscape.sh
===================================================================
--- cytoscape/trunk/distribution/src/main/bin/cytoscape.sh 2010-10-12
19:52:34 UTC (rev 22214)
+++ cytoscape/trunk/distribution/src/main/bin/cytoscape.sh 2010-10-12
20:07:54 UTC (rev 22215)
@@ -17,6 +17,7 @@
if [ -r $vm_options_path/Cytoscape.vmoptions ]; then
java `cat "$vm_options_path/Cytoscape.vmoptions"` -jar
"$script_path/cytoscape.jar" -p "$script_path/plugins" "$@"
else # Just use sensible defaults.
+ echo '*** Missing Cytoscape.vmoptions, falling back to using defaults!'
java -Dswing.aatext=true -Dawt.useSystemAAFontSettings=lcd -Xss10M
-Xmx1550M \
-jar "$script_path/cytoscape.jar" -p "$script_path/plugins" "$@"
fi
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.