1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-29 08:00:53 +02:00

fixed linux helper paths

This commit is contained in:
antelle 2021-04-13 23:03:38 +02:00
parent 99d0fa30ed
commit 1b8c9a3e0c
No known key found for this signature in database
GPG Key ID: 63C9777AAB7C563C
2 changed files with 2 additions and 2 deletions

View File

@ -774,7 +774,7 @@ module.exports = function (grunt) {
outputName: 'keeweb-native-messaging-host' outputName: 'keeweb-native-messaging-host'
}, },
files: { files: {
'tmp/desktop/KeeWeb-linux-x64/keeweb-native-messaging-host': 'tmp/desktop/keeweb-linux-x64/keeweb-native-messaging-host':
'extension/native-messaging-host' 'extension/native-messaging-host'
} }
}, },

View File

@ -28,7 +28,7 @@ module.exports = function (grunt) {
} }
grunt.file.copy(binPath, dest); grunt.file.copy(binPath, dest);
fs.chmodSync(dest, 0o700); fs.chmodSync(dest, 0o755);
grunt.log.writeln(`Built ${dest}`); grunt.log.writeln(`Built ${dest}`);