mirror of
https://github.com/arduino/arduino-ide.git
synced 2025-11-09 10:28:32 +00:00
Support of the CLI config.
Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
import { join } from 'path';
|
||||
import { homedir } from 'os';
|
||||
import { injectable } from 'inversify';
|
||||
import { EnvVariablesServerImpl } from '@theia/core/lib/node/env-variables/env-variables-server';
|
||||
import { FileUri } from '@theia/core/lib/node/file-uri';
|
||||
|
||||
@injectable()
|
||||
export class ArduinoEnvVariablesServer extends EnvVariablesServerImpl {
|
||||
|
||||
protected readonly configDirUri = FileUri.create(join(homedir(), '.arduinoProIDE')).toString();
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user