Add working directory to plugin config

This commit is contained in:
Asher
2021-01-21 13:49:45 -06:00
parent 3211eb1ce5
commit 00cfd9bdf1
3 changed files with 9 additions and 1 deletions

View File

@@ -65,6 +65,7 @@ export class PluginAPI {
*/
private readonly csPlugin = "",
private readonly csPluginPath = `${path.join(util.paths.data, "plugins")}:/usr/share/code-server/plugins`,
private readonly workingDirectory: string | undefined = undefined,
) {
this.logger = logger.named("pluginapi")
}
@@ -249,6 +250,7 @@ export class PluginAPI {
p.init({
logger: logger,
workingDirectory: this.workingDirectory,
})
logger.debug("loaded")