@openai-lite/codex-feishu 0.1.2 → 0.1.3
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/package.json
CHANGED
|
@@ -183,8 +183,8 @@ export async function restartDaemonDetached() {
|
|
|
183
183
|
await removePidFile();
|
|
184
184
|
|
|
185
185
|
const entry = process.argv[1];
|
|
186
|
-
const
|
|
187
|
-
const candidateEntries = [...new Set([
|
|
186
|
+
const stableBinEntry = fileURLToPath(new URL("../../bin/codex-feishu.js", import.meta.url));
|
|
187
|
+
const candidateEntries = [...new Set([stableBinEntry, entry].filter(Boolean))];
|
|
188
188
|
const attempts = [];
|
|
189
189
|
if (process.platform === "win32") {
|
|
190
190
|
for (const cliEntry of candidateEntries) {
|