aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2014-02-03 23:03:52 +0000
committerFlorian Dold <florian.dold@gmail.com>2014-02-03 23:03:52 +0000
commit50c29845e1ed1646050fa7e71b64c6683287ffde (patch)
treea83ca2bb2beda2ed5f5b521fd41aa5d393daf287 /bin
parent617842c973a7c05053fc770960fda60e7ef77368 (diff)
downloadgnunet-java-50c29845e1ed1646050fa7e71b64c6683287ffde.tar.gz
gnunet-java-50c29845e1ed1646050fa7e71b64c6683287ffde.zip
- scheduler-per-thread
- fixed ECDSA and crypto endianess - Gns and GnsTool implemented - updated consensus protocol
Diffstat (limited to 'bin')
-rwxr-xr-xbin/gnunet-gns12
1 files changed, 12 insertions, 0 deletions
diff --git a/bin/gnunet-gns b/bin/gnunet-gns
new file mode 100755
index 0000000..d269c8e
--- /dev/null
+++ b/bin/gnunet-gns
@@ -0,0 +1,12 @@
1#!/bin/sh
2
3if [ "%GNJ_INSTALLED" = "true" ];
4then
5 export CLASSPATH="%INSTALL_PATH/share/java/*"
6else
7 DIR=`dirname $0`
8 # if we are in the development environment use class files directly instead of jar
9 export CLASSPATH="$DIR/../build-gradle/classes/main/:$DIR/../build-gradle/resources/main/:$DIR/../lib/*"
10fi
11
12java -ea org.gnunet.gns.GnsTool "$@"