33 lines
535 B
Bash
Executable File
33 lines
535 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)
|
|
cd "$SCRIPT_DIR" || exit 1
|
|
|
|
. "$SCRIPT_DIR/config.sh"
|
|
|
|
if [ -f config_overide.sh ]; then
|
|
. "$SCRIPT_DIR/config_override.sh"
|
|
fi
|
|
|
|
cd ../i2p.i2p.jpackage-build/
|
|
ant distclean
|
|
git checkout .
|
|
git checkout master
|
|
cd "$SCRIPT_DIR" || exit 1
|
|
rm -rf \
|
|
build \
|
|
eventlog.txt \
|
|
hostsdb.blockfile \
|
|
I2P \
|
|
i2p_1.0-1_amd64.deb \
|
|
libjbigi.so \
|
|
libjcpuid.so \
|
|
logs \
|
|
peerProfiles \
|
|
prngseed.rnd \
|
|
wrapper.log \
|
|
*.jar \
|
|
*.exe \
|
|
*.dmg \
|
|
*.tar.gz
|
|
make clean |