Launch LS on Win from VSCode and Atom

This commit is contained in:
BoykoAlex
2017-12-12 12:34:12 -05:00
parent 8c771e2471
commit 28f36ae9b7
3 changed files with 3 additions and 3 deletions

View File

@@ -101,7 +101,7 @@ export function activate(options: ActivatorOptions, context: VSCode.ExtensionCon
const classpath = options.classpath(context);
if (classpath) {
args.push('-cp');
args.push(classpath.join(':'));
args.push(classpath.join(Path.delimiter));
}
}
const launcher = options.launcher(context);