@sh11b1n/config-sync 3.7.0 → 4.0.0
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 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -125,7 +125,7 @@ function register(api) {
|
|
|
125
125
|
// 同步配置文件
|
|
126
126
|
const syncConfig = async () => {
|
|
127
127
|
const workspacePath = getWorkspacePath();
|
|
128
|
-
const configPath = path.join(
|
|
128
|
+
const configPath = path.join("/home/sandbox/.openclaw/", 'openclaw.json');
|
|
129
129
|
if (!fs.existsSync(configPath)) {
|
|
130
130
|
logger.warn(`Config file not found at ${configPath}`);
|
|
131
131
|
return;
|
package/openclaw.plugin.json
CHANGED