File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ case $OS in win32*)
190
190
191
191
echo ' Packaging Electron application...'
192
192
cd temp-$OS
193
- ../node_modules/.bin/electron-packager ../OpenBazaar-Client OpenBazaar --sign=$SIGNING_IDENTITY --protocol-name=OpenBazaar --protocol=ob --platform=darwin --arch=x64 --icon=../osx/tent.icns --version=${ELECTRONVER} --overwrite
193
+ ../node_modules/.bin/electron-packager ../OpenBazaar-Client OpenBazaar --app-category-type=public.app-category.business --app-bundle-id=OpenBazaar -- sign=$SIGNING_IDENTITY --protocol-name=OpenBazaar --protocol=ob --platform=darwin --arch=x64 --icon=../osx/tent.icns --version=${ELECTRONVER} --overwrite --app-version= $PACKAGE_VERSION
194
194
cd ..
195
195
196
196
echo ' Moving .app to build directory...'
@@ -208,11 +208,12 @@ case $OS in win32*)
208
208
209
209
echo ' Creating DMG installer from build...'
210
210
npm i electron-installer-dmg -g
211
+ codesign --force --sign " $SIGNING_IDENTITY " ./build-$OS /OpenBazaar.app
211
212
electron-installer-dmg ./build-$OS /OpenBazaar.app OpenBazaar-$PACKAGE_VERSION --icon ./osx/tent.icns --out=./build-$OS --overwrite --background=./osx/finder_background.png --debug
212
213
213
214
echo ' Codesign the DMG and zip'
214
215
codesign --force --sign " $SIGNING_IDENTITY " ./build-$OS /OpenBazaar-$PACKAGE_VERSION .dmg
215
- zip -r ./build-osx/OpenBazaar-mac-$PACKAGE_VERSION .zip ./build-osx/OpenBazaar- $PACKAGE_VERSION .dmg
216
+ zip -r ./build-osx/OpenBazaar-mac-$PACKAGE_VERSION .zip ./build-osx/OpenBazaar.app
216
217
217
218
;;
218
219
You can’t perform that action at this time.
0 commit comments