fix(web): tidy the XDG config root resolution
The web server read XDG_CONFIG_HOME through a redundant typeof guard on a value that is already string|undefined, which tripped the anti-slop lint on its own new line and diverged from the VS Code helper. Both now read the same way. The VS Code provider test also still hard-coded ~/.config/opencode, so it silently stopped asserting whenever XDG_CONFIG_HOME was set; it now uses the shared constant, like the web test already does.
This commit is contained in:
@@ -6,10 +6,10 @@ import { parse as parseJsonc, printParseErrorCode } from 'jsonc-parser';
|
||||
|
||||
// ============== PATH CONSTANTS ==============
|
||||
|
||||
const XDG_CONFIG_HOME = typeof process.env.XDG_CONFIG_HOME === 'string' && process.env.XDG_CONFIG_HOME.trim()
|
||||
? process.env.XDG_CONFIG_HOME.trim()
|
||||
: path.join(os.homedir(), '.config');
|
||||
const OPENCODE_CONFIG_DIR = path.join(XDG_CONFIG_HOME, 'opencode');
|
||||
const OPENCODE_CONFIG_DIR = path.join(
|
||||
process.env.XDG_CONFIG_HOME?.trim() || path.join(os.homedir(), '.config'),
|
||||
'opencode',
|
||||
);
|
||||
const AGENT_DIR = path.join(OPENCODE_CONFIG_DIR, 'agents');
|
||||
const COMMAND_DIR = path.join(OPENCODE_CONFIG_DIR, 'commands');
|
||||
const SKILL_DIR = path.join(OPENCODE_CONFIG_DIR, 'skills');
|
||||
|
||||
Reference in New Issue
Block a user