Skip to content

Commit

Permalink
Windows deploy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yamachu committed Sep 11, 2017
1 parent f857ed9 commit ed9500a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.js
Expand Up @@ -17,7 +17,7 @@ if (os.platform() === 'darwin') {
} else if (os.platform() === 'linux') {
process.env.EDGE_APP_ROOT = path.join(__dirname, 'cs/bin/Release/netstandard1.6/ubuntu.16.04-x64/publish')
} else {
process.env.EDGE_APP_ROOT = path.join(__dirname, 'cs/bin/Release/netstandard1.6/win10-x86/publish')
process.env.EDGE_APP_ROOT = path.join(__dirname, 'cs/bin/Release/netstandard1.6/win10-x64/publish')
}

if (os.platform() === 'darwin' || os.platform() === 'linux') {
Expand Down
2 changes: 1 addition & 1 deletion tools/deploy_win.bat
@@ -1,4 +1,4 @@
dotnet restore src/cs
dotnet publish src/cs --runtime win10-x86 --configuration Release
dotnet publish src/cs --runtime win10-x64 --configuration Release

./node_modules/.bin/electron-packager ./ ToWhisper --platform=win32 --arch=x64

0 comments on commit ed9500a

Please sign in to comment.