Update changelog and clean script

This commit is contained in:
idk
2022-09-08 10:49:20 -04:00
parent 93b197efb9
commit 928ae1a85f
2 changed files with 9 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
2022-09-08 idk
* Generate a source tarball when we checkout a branch of i2p.i2p
* Upload a source tarball when we do a daily build
* Clean up a source tarball when running the clean script. Regenerate tarball after cleaning.
2022-09-06 idk
* Point release 1.9.5, fixes a bug which occurs more often on Windows 11, fixes a SusiDNS issue
+4 -3
View File
@@ -4,6 +4,7 @@ SCRIPT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd -P)
cd "$SCRIPT_DIR" || exit 1
. "$SCRIPT_DIR/config.sh"
. "$SCRIPT_DIR/i2pversion"
if [ -f config_overide.sh ]; then
. "$SCRIPT_DIR/config_override.sh"
@@ -11,8 +12,9 @@ fi
cd ../i2p.i2p.jpackage-build/
ant distclean
git clean -fd
git checkout .
git checkout master
tar --exclude="$SCRIPT_DIR/../i2p.i2p.jpackage-build/.git" -cvzf "$SCRIPT_DIR/../i2p.i2p.jpackage-build.tar.gz" "$SCRIPT_DIR/../i2p.i2p.jpackage-build/"
cd "$SCRIPT_DIR" || exit 1
rm -rf \
build \
@@ -28,6 +30,5 @@ rm -rf \
wrapper.log \
*.jar \
*.exe \
*.dmg \
*.tar.gz
*.dmg
make clean