clawdi 0.13.100 → 0.13.101
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -575,7 +575,6 @@ if (
|
|
|
575
575
|
typeof providerAuth.ensureAuthProfileStoreForLocalUpdate !== "function" ||
|
|
576
576
|
typeof providerAuth.listProfilesForProvider !== "function" ||
|
|
577
577
|
typeof providerAuth.removeProviderAuthProfilesWithLock !== "function" ||
|
|
578
|
-
typeof providerAuth.resolveOpenClawAgentDir !== "function" ||
|
|
579
578
|
typeof configMutation.readConfigFileSnapshotForWrite !== "function" ||
|
|
580
579
|
typeof configMutation.mutateConfigFile !== "function"
|
|
581
580
|
) {
|
|
@@ -593,7 +592,7 @@ const normalizePath = (value) => {
|
|
|
593
592
|
};
|
|
594
593
|
const stateDir = normalizePath(process.env.OPENCLAW_STATE_DIR?.trim() || join(home, ".openclaw"));
|
|
595
594
|
const defaultAgentDir = join(stateDir, "agents", "main", "agent");
|
|
596
|
-
const agentDirs = new Set([defaultAgentDir
|
|
595
|
+
const agentDirs = new Set([defaultAgentDir]);
|
|
597
596
|
if (process.env.OPENCLAW_AGENT_DIR?.trim()) {
|
|
598
597
|
agentDirs.add(normalizePath(process.env.OPENCLAW_AGENT_DIR));
|
|
599
598
|
}
|
|
@@ -992,7 +991,6 @@ if (
|
|
|
992
991
|
typeof providerAuth.ensureAuthProfileStoreForLocalUpdate !== "function" ||
|
|
993
992
|
typeof providerAuth.listProfilesForProvider !== "function" ||
|
|
994
993
|
typeof providerAuth.removeProviderAuthProfilesWithLock !== "function" ||
|
|
995
|
-
typeof providerAuth.resolveOpenClawAgentDir !== "function" ||
|
|
996
994
|
typeof configMutation.readConfigFileSnapshotForWrite !== "function" ||
|
|
997
995
|
typeof configMutation.mutateConfigFile !== "function" ||
|
|
998
996
|
typeof providerEnvVars.listKnownProviderAuthEnvVarNames !== "function"
|