This commit is contained in:
antelle 2016-07-11 22:37:04 +03:00
parent 71c3aaa313
commit bdce1c008f
4 changed files with 9 additions and 2 deletions

View File

@ -97,6 +97,11 @@ module.exports = function(grunt) {
expand: true,
nonull: true
},
'desktop_windows_helper': {
src: 'helper/win32/KeeWebHelper.exe',
dest: 'tmp/desktop/app/',
nonull: true
},
'desktop_osx': {
src: 'tmp/desktop/mac/KeeWeb-' + pkg.version + '.dmg',
dest: 'dist/desktop/KeeWeb.mac.dmg',
@ -467,6 +472,7 @@ module.exports = function(grunt) {
'validate-desktop-update',
'electron',
'electron-builder:osx',
'copy:desktop_windows_helper',
'electron-builder:win',
'compress:linux64',
'compress:linux32',

View File

@ -19,7 +19,7 @@ AutoTypeHelper.prototype.getActiveWindowTitle = function(callback) {
};
AutoTypeHelper.getHelperPath = function() {
return Launcher.getAppPath('KeeWebHelper.exe');
return Launcher.getAppPath('helper/win32/KeeWebHelper.exe');
};
module.exports = AutoTypeHelper;

View File

@ -6,7 +6,8 @@
/* jshint node:true */
/* jshint browser:false */
var app = require('app'),
var electron = require('electron'),
app = electron.app,
fs = require('fs'),
path = require('path'),
spawn = require('child_process').spawn;

BIN
helper/win32/KeeWebHelper.exe Executable file

Binary file not shown.