forked from bridgedb/BridgeDb
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix batchmapper and server startup scripts
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
Showing
3 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 "$@" |