fixed basedir

pull/1/head
knaccc 5 years ago
parent 3e3d4191d8
commit a5085dee89

@ -34,6 +34,9 @@ to build a platform-specific launcher executable.
## Running the launcher
The launcher will need access to the /usr/share/i2p base directory. It will create a .i2p directory for configuration
files in the current user's home directory if it does not already exist.
`target/router/bin/router`
## Check that the I2P router is running and that it is listening for SAM connections

@ -1,6 +1,6 @@
#!/bin/bash
basedir=`dirname $0`/..
basedir=$(dirname $(dirname $(readlink -fm $0)))
# convert the jar files from an existing I2P built into modules suitable for use with jlink
$basedir/bin/convert-jars-to-modules.sh

@ -1,6 +1,6 @@
#!/bin/bash
basedir=`dirname $0`/..
basedir=$(dirname $(dirname $(readlink -fm $0)))
jarPaths=`find $basedir/import/lib -name '*.jar'`

Loading…
Cancel
Save