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