@agenticmail/core 0.5.20 → 0.5.21
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 +13 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6330,6 +6330,19 @@ var DependencyInstaller = class {
|
|
|
6330
6330
|
);
|
|
6331
6331
|
if (brewResult.exitCode === 0) {
|
|
6332
6332
|
this.onProgress("__progress__:45:Mail server engine installed!");
|
|
6333
|
+
try {
|
|
6334
|
+
execSync(`osascript -e 'quit app "Docker Desktop"' 2>/dev/null`, { timeout: 5e3, stdio: "ignore" });
|
|
6335
|
+
} catch {
|
|
6336
|
+
}
|
|
6337
|
+
try {
|
|
6338
|
+
execSync(`osascript -e 'quit app "Docker"' 2>/dev/null`, { timeout: 5e3, stdio: "ignore" });
|
|
6339
|
+
} catch {
|
|
6340
|
+
}
|
|
6341
|
+
try {
|
|
6342
|
+
execSync("pkill -f Docker.app 2>/dev/null", { timeout: 5e3, stdio: "ignore" });
|
|
6343
|
+
} catch {
|
|
6344
|
+
}
|
|
6345
|
+
await new Promise((r) => setTimeout(r, 3e3));
|
|
6333
6346
|
const appPath = this.findDockerApp();
|
|
6334
6347
|
if (appPath) {
|
|
6335
6348
|
await this.setupExistingDockerApp(appPath);
|