Author: jm Date: 2011-09-19 07:54:52 -0700 (Mon, 19 Sep 2011) New Revision: 26860
Modified: csplugins/trunk/toronto/jm/repacker/wrap.sh Log: Updated wrap.sh so it fetches Bnd automatically Modified: csplugins/trunk/toronto/jm/repacker/wrap.sh =================================================================== --- csplugins/trunk/toronto/jm/repacker/wrap.sh 2011-09-19 03:32:10 UTC (rev 26859) +++ csplugins/trunk/toronto/jm/repacker/wrap.sh 2011-09-19 14:54:52 UTC (rev 26860) @@ -1,7 +1,12 @@ #!/bin/bash -BND_CMD=bnd +BND_CMD="java -jar bnd.jar" +if [[ ! -s bnd.jar ]] +then + curl http://dl.dropbox.com/u/2590603/bnd/biz.aQute.bnd.jar > bnd.jar +fi + function fixpath { if [ -z $(which cygpath) ] then -- 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.
