@highway1/cli 0.1.58 → 0.1.59
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 +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -17461,6 +17461,10 @@ var ClawDaemon = class {
|
|
|
17461
17461
|
async start() {
|
|
17462
17462
|
try {
|
|
17463
17463
|
logger15.info("Starting Clawiverse daemon", { socketPath: this.socketPath });
|
|
17464
|
+
const { existsSync: existsSync3, unlinkSync: unlinkSync3 } = await import('fs');
|
|
17465
|
+
if (existsSync3(this.socketPath)) {
|
|
17466
|
+
unlinkSync3(this.socketPath);
|
|
17467
|
+
}
|
|
17464
17468
|
const keyPair = importKeyPair({
|
|
17465
17469
|
publicKey: this.identity.publicKey,
|
|
17466
17470
|
privateKey: this.identity.privateKey
|