aboutsummaryrefslogtreecommitdiff
path: root/bin/gnunet-nse
blob: e9dec04179ab8fcc0d2039717d6315913d1d6fe9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

DIR=`dirname $0`

if [ "%GNJ_INSTALLED" = "true" ];
then
    export CLASSPATH="%INSTALL_PATH/share/java/*"
else
    export CLASSPATH="$DIR/../build/:$DIR/../lib/*"
fi

java -ea org.gnunet.nse.NetworkSizeEstimation "$@"