cicy-code 0.2.7 → 0.2.8
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/bin/cicy-code.js +0 -1
- package/package.json +1 -1
package/bin/cicy-code.js
CHANGED
|
@@ -130,7 +130,6 @@ async function launchDesktop() {
|
|
|
130
130
|
|
|
131
131
|
// 0. Kill existing electron/cicy-code and free ports
|
|
132
132
|
try { execSync(`pkill -f 'electron' 2>/dev/null || true`, { shell: true }); } catch {}
|
|
133
|
-
try { execSync(`pkill -f 'cicy-code' 2>/dev/null || true`, { shell: true }); } catch {}
|
|
134
133
|
try { execSync(`lsof -ti:${desktopPort} | xargs kill -9 2>/dev/null || true`, { shell: true }); } catch {}
|
|
135
134
|
try { execSync(`lsof -ti:${port} | xargs kill -9 2>/dev/null || true`, { shell: true }); } catch {}
|
|
136
135
|
await new Promise(resolve => setTimeout(resolve, 500));
|