Skip to content

Commit de7d3ba

Browse files
committed
Change electron build script paths
Because electron builder has decided to output the mac assets to somewhere else today.
1 parent 05884ba commit de7d3ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/electron-package.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ mkdir -p "$projdir/electron_app/dist/unsigned/"
100100
# Install packages: what the user downloads the first time,
101101
# (DMGs for mac, exe installer for windows)
102102
mkdir -p "$pubdir/install/macos"
103-
cp $distdir/mac/*.dmg "$pubdir/install/macos/"
103+
cp $distdir/*.dmg "$pubdir/install/macos/"
104104

105105
# Windows installers go to the dist dir because they need signing
106106
mkdir -p "$pubdir/install/win32/ia32/"
@@ -111,7 +111,7 @@ cp $distdir/win/*.exe "$projdir/electron_app/dist/unsigned/"
111111

112112
# Packages for auto-update
113113
mkdir -p "$pubdir/update/macos"
114-
cp $distdir/mac/*.zip "$pubdir/update/macos/"
114+
cp $distdir/*-mac.zip "$pubdir/update/macos/"
115115
echo "$vername" > "$pubdir/update/macos/latest"
116116

117117
mkdir -p "$pubdir/update/win32/ia32/"

0 commit comments

Comments
 (0)