
* Initial setup and migrated src/common * WIP * WIP * WIP * Main module basically finished * Renderer process migrated * Added CI step and some fixes * Fixed remainder of issues and added proper ESLint config * Fixed a couple issues * Progress! * Some more fixes * Fixed a test * Fix build step * PR feedback
20 lines
516 B
TypeScript
20 lines
516 B
TypeScript
// Copyright (c) 2015-2016 Yuya Ochiai
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
import AutoLaunch from 'auto-launch';
|
|
|
|
async function upgradeAutoLaunch() {
|
|
if (process.platform === 'darwin') {
|
|
return;
|
|
}
|
|
const appLauncher = new AutoLaunch({
|
|
name: 'Mattermost',
|
|
});
|
|
const enabled = await appLauncher.isEnabled();
|
|
if (enabled) {
|
|
await appLauncher.enable();
|
|
}
|
|
}
|
|
|
|
export default upgradeAutoLaunch;
|