From 96806ecc071c8ceede6b474d9ce83d9e89d112c6 Mon Sep 17 00:00:00 2001 From: idk Date: Mon, 19 Sep 2022 17:50:28 -0400 Subject: [PATCH] expressly include icon in jpackage output --- exe.sh | 2 ++ msi.sh | 2 ++ 2 files changed, 4 insertions(+) diff --git a/exe.sh b/exe.sh index 18998bb..7170e0c 100755 --- a/exe.sh +++ b/exe.sh @@ -17,6 +17,8 @@ jpackage --name I2P-EXE --app-version "$I2P_VERSION" \ --java-options "--add-opens java.base/java.util.Properties.defaults=ALL-UNNAMED" \ $JPACKAGE_OPTS \ --app-content src/I2P/config \ + --app-content src/icons/ui2pbrowser_icon.ico \ + --icon src/icons/ui2pbrowser_icon.ico \ --input build \ --verbose \ --type exe \ diff --git a/msi.sh b/msi.sh index 2db58f9..0899cb1 100755 --- a/msi.sh +++ b/msi.sh @@ -18,6 +18,8 @@ jpackage --name I2P-MSI --app-version "$I2P_VERSION" \ --java-options "--add-opens java.base/java.util.Properties.defaults=ALL-UNNAMED" \ $JPACKAGE_OPTS \ --app-content src/I2P/config \ + --app-content src/icons/ui2pbrowser_icon.ico \ + --icon src/icons/ui2pbrowser_icon.ico \ --input build \ --verbose \ --type msi \