12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#! /usr/bin/env sh
|
|
. ./config.sh
|
|
jpackage \
|
|
--verbose \
|
|
--type dmg \
|
|
--license-file LICENSE.md \
|
|
--name i2pbrowser \
|
|
--app-version "$GITHUB_TAG" \
|
|
--input src/build \
|
|
--main-jar i2pfirefox.jar \
|
|
--main-class net.i2p.i2pfirefox.I2PBrowser
|