Skip to content

Commit

Permalink
Fix batchmapper and server startup scripts
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.bigcat.unimaas.nl/bridgedb/trunk@334 e3f1d335-44b1-4163-9530-9b341189ae98
  • Loading branch information
martijn committed Mar 22, 2010
1 parent 7deabb6 commit 9744b52
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
6 changes: 5 additions & 1 deletion batchmapper.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
#!/bin/sh
java -jar dist/bridgedb-batchmapper.jar "$@"

# change to directory of this script
cd $(dirname $0)

java -jar dist/org.bridgedb.tools.batchmapper.jar "$@"
4 changes: 2 additions & 2 deletions org.bridgedb.tools.batchmapper/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
<target name="jar" depends="compile">
<jar jarfile="${jar.file}">
<manifest>
<attribute name="Main-Class" value="org.bridgedb.tools.BatchMapper"/>
<attribute name="Class-Path" value="bridgedb.jar bridgedb-bio.jar"/>
<attribute name="Main-Class" value="org.bridgedb.tools.batchmapper.BatchMapper"/>
<attribute name="Class-Path" value="org.bridgedb.jar org.bridgedb.bio.jar org.bridgedb.rdb.jar"/>
</manifest>
<fileset dir="build" includes="**/*.class"/>
</jar>
Expand Down
3 changes: 3 additions & 0 deletions start-server.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
#!/bin/sh

# change to directory of this script
cd $(dirname $0)

java -jar dist/org.bridgedb.server.jar "$@"

0 comments on commit 9744b52

Please sign in to comment.