Files
i2p.firefox/clean.sh

33 lines
535 B
Bash
Raw Normal View History

#! /usr/bin/env bash
2021-04-03 16:39:26 -04:00
2022-07-15 23:34:43 -04:00
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
2022-05-08 19:39:44 -04:00
git checkout .
git checkout master
2022-07-12 02:08:09 -04:00
cd "$SCRIPT_DIR" || exit 1
2021-04-03 16:39:26 -04:00
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
2022-05-05 18:18:20 -04:00
make clean