Update build script on mac to not throw an error
This commit is contained in:
parent
c15cd512ae
commit
3fd2b04e75
|
@ -2,7 +2,7 @@
|
||||||
"dest": "../dist/installers/",
|
"dest": "../dist/installers/",
|
||||||
"icon": "./assets/icons/icon.png",
|
"icon": "./assets/icons/icon.png",
|
||||||
"categories": [
|
"categories": [
|
||||||
"Video"
|
"AudioVideo"
|
||||||
],
|
],
|
||||||
"lintianOverrides": [
|
"lintianOverrides": [
|
||||||
"changelog-file-missing-in-native-package"
|
"changelog-file-missing-in-native-package"
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
./node_modules/.bin/electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/icon.icns --prune=true --out=../dist
|
./node_modules/.bin/electron-packager . --overwrite --platform=darwin --arch=x64 --icon=assets/icons/icon.icns --prune=true --out=../dist
|
||||||
#build dmg for mac install
|
#build dmg for mac install
|
||||||
sleep 5s
|
sleep 5s
|
||||||
mkdir ../dist/installers
|
mkdir -p ../dist/installers
|
||||||
./node_modules/.bin/electron-installer-dmg ../dist/mcopy-app-darwin-x64/mcopy-app.app mcopy-app --out=../dist/installers --icon=assets/icons/icon.icns --overwrite
|
./node_modules/.bin/electron-installer-dmg ../dist/mcopy-app-darwin-x64/mcopy-app.app mcopy-app --out=../dist/installers --icon=assets/icons/icon.icns --overwrite
|
||||||
# Path to the icon file that will be the app icon in the DMG window.
|
# Path to the icon file that will be the app icon in the DMG window.
|
||||||
# --icon-size=<px> How big to make the icon for the app in the DMG. [Default: `80`].
|
# --icon-size=<px> How big to make the icon for the app in the DMG. [Default: `80`].
|
||||||
|
|
Loading…
Reference in New Issue