mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-12-26 18:12:13 +08:00
Lowercase the MailSync process name on Mac OS X for consistency
This commit is contained in:
parent
3cce5627ac
commit
c62887f279
5 changed files with 6 additions and 6 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -63,6 +63,6 @@ scripts/venv
|
|||
|
||||
# OAuth client secret for talking to Google Sheets
|
||||
client_secret.json
|
||||
/app/MailSync
|
||||
/app/mailsync
|
||||
/logfile.txt
|
||||
/app/dist-docs
|
||||
|
|
|
@ -14,7 +14,7 @@ addons:
|
|||
target_paths: client/${TRAVIS_COMMIT:0:8}/${TRAVIS_OS_NAME}
|
||||
permissions: public-read
|
||||
paths:
|
||||
- ../MailSync
|
||||
- ../mailsync
|
||||
- Merani.dmg
|
||||
- Merani.zip
|
||||
- $(find . -type f -name *.deb | tr "\n" ":")
|
||||
|
|
|
@ -147,8 +147,8 @@ module.exports = (grunt) => {
|
|||
'derefSymlinks': false,
|
||||
'asar': {
|
||||
'unpack': "{" + [
|
||||
'MailSync',
|
||||
'MailSync.exe',
|
||||
'mailsync',
|
||||
'mailsync.exe',
|
||||
'*.node',
|
||||
'**/vendor/**',
|
||||
'examples/**',
|
||||
|
|
|
@ -38,7 +38,7 @@ export default class MailsyncProcess extends EventEmitter {
|
|||
this.configDirPath = configDirPath;
|
||||
this.account = account;
|
||||
this.identity = identity;
|
||||
this.binaryPath = path.join(resourcePath, 'MailSync').replace('app.asar', 'app.asar.unpacked');
|
||||
this.binaryPath = path.join(resourcePath, 'mailsync').replace('app.asar', 'app.asar.unpacked');
|
||||
this._proc = null;
|
||||
}
|
||||
|
||||
|
|
2
mailsync
2
mailsync
|
@ -1 +1 @@
|
|||
Subproject commit 2f2e2dd600191449aab3924c9988c814b8ff8303
|
||||
Subproject commit 1af7f54080fdcb399f042fc0426f1f60df639fdd
|
Loading…
Reference in a new issue