mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 14:49:53 +00:00
45 lines
1.3 KiB
Bash
45 lines
1.3 KiB
Bash
#!/bin/bash
|
|
#? Package the app
|
|
|
|
APP_NAME="Insomnia"
|
|
APP_ID="com.insomnia.app"
|
|
APP_VERSION=$(node -e "console.log(require('./dist/package.json').version)")
|
|
COMPANY_NAME="Gregory Schier"
|
|
OUT_DIR="build/v$APP_VERSION"
|
|
|
|
echo "-- PACKAGING v$APP_VERSION TO $OUT_DIR/... --"
|
|
|
|
node -r babel-register node_modules/electron-packager/cli.js \
|
|
dist \
|
|
"$APP_NAME" \
|
|
--platform=win32 \
|
|
--arch=x64 \
|
|
--asar \
|
|
--app-version="$APP_VERSION" \
|
|
--version-string.CompanyName="$COMPANY_NAME" \
|
|
--version-string.ProductName="$APP_NAME" \
|
|
--version-string.FileDescription="Beautiful HTTP Client" \
|
|
--version-string.OriginalFilename="$APP_ID" \
|
|
--version-string.InternalName="$APP_ID" \
|
|
--download.strictSSL=true \
|
|
--icon=assets/icon \
|
|
--out="$OUT_DIR" \
|
|
--app-bundle-id="$APP_ID" \
|
|
--app-category-type='public.app-category.developer-tools' \
|
|
--sign='Developer ID Application: Gregory Schier (7PU3P6ELJ8)' \
|
|
--osx-sign \
|
|
--overwrite
|
|
|
|
# TODO: Move this to new script
|
|
#cd "$OUT_DIR"
|
|
#DARWIN_DIR="$APP_NAME-darwin-x64"
|
|
#ZIP_NAME="$APP_NAME-v$APP_VERSION.zip"
|
|
#
|
|
#mv "$DARWIN_DIR/$APP_NAME.app" "./$APP_NAME.app"
|
|
#rm -r "$DARWIN_DIR"
|
|
#
|
|
#zip -rqyX9 "$ZIP_NAME" "$APP_NAME.app"
|
|
#rm -r "$APP_NAME.app"
|
|
|
|
echo "-- PACKAGED $APP_VERSION TO $OUT_DIR --"
|