mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
13d8fbbd65
Co-authored-by: Laurent Cozic <laurent22@users.noreply.github.com>
10 lines
259 B
TypeScript
10 lines
259 B
TypeScript
|
|
const createStartupArgs = (profileDirectory: string) => {
|
|
// We need to run with --env dev to disable the single instance check.
|
|
return [
|
|
'main.js', '--env', 'dev', '--no-welcome', '--profile', profileDirectory,
|
|
];
|
|
};
|
|
|
|
export default createStartupArgs;
|