Archived
1
0

Pass data directory when forking with bootstrap

This commit is contained in:
Asher
2019-02-22 16:31:21 -06:00
parent 8b8bef015e
commit d9fc29fb0b
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import { logger } from "@coder/logger";
// tslint:disable no-any
export type ForkProvider = (modulePath: string, args: string[], options: ForkOptions, dataDir?: string) => ChildProcess;
export type ForkProvider = (modulePath: string, args: string[], options: ForkOptions) => ChildProcess;
export interface Disposer extends IDisposable {
onDidDispose: (cb: () => void) => void;