chore: fix electron-sign-app-darwin.sh reference (#967)

`electron-sign-dmg-darwin.sh` was incorrectly referring to
`scripts/build/electron-sign-app-darwin.sh` as
`scripts/darwin/electron-sign-app.sh`, causing the DMG builds to fail in
OS X.

Signed-off-by: Juan Cruz Viotti <jviotti@openmailbox.org>
This commit is contained in:
Juan Cruz Viotti 2016-12-10 15:32:41 -04:00 committed by GitHub
parent 47d3f0c8fa
commit 5e987f2f1e

View File

@ -69,7 +69,7 @@ hdiutil attach "$ARGV_APPLICATION_DMG" -readwrite -noverify
# Wait for a bit to ensure the image is mounted
sleep 2
./scripts/darwin/electron-sign-app.sh -a "$VOLUME_APPLICATION" -i "$ARGV_IDENTITY"
./scripts/build/electron-sign-app-darwin.sh -a "$VOLUME_APPLICATION" -i "$ARGV_IDENTITY"
# Unmount temporary DMG image.
hdiutil detach "$VOLUME_DIRECTORY"