@agenticmail/core 0.5.5 → 0.5.7
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 +5 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6302,12 +6302,12 @@ var DependencyInstaller = class {
|
|
|
6302
6302
|
}
|
|
6303
6303
|
if (dockerApp) {
|
|
6304
6304
|
try {
|
|
6305
|
-
execFileSync2("open", [dockerApp], { timeout: 1e4, stdio: "ignore" });
|
|
6305
|
+
execFileSync2("open", ["-g", "-j", dockerApp], { timeout: 1e4, stdio: "ignore" });
|
|
6306
6306
|
} catch {
|
|
6307
6307
|
}
|
|
6308
6308
|
} else {
|
|
6309
6309
|
try {
|
|
6310
|
-
execFileSync2("open", ["-a", "Docker"], { timeout: 1e4, stdio: "ignore" });
|
|
6310
|
+
execFileSync2("open", ["-g", "-j", "-a", "Docker"], { timeout: 1e4, stdio: "ignore" });
|
|
6311
6311
|
} catch {
|
|
6312
6312
|
}
|
|
6313
6313
|
}
|
|
@@ -6333,7 +6333,7 @@ var DependencyInstaller = class {
|
|
|
6333
6333
|
}
|
|
6334
6334
|
if (dockerApp) {
|
|
6335
6335
|
try {
|
|
6336
|
-
execFileSync2("open", [dockerApp], { timeout: 1e4, stdio: "ignore" });
|
|
6336
|
+
execFileSync2("open", ["-g", "-j", dockerApp], { timeout: 1e4, stdio: "ignore" });
|
|
6337
6337
|
} catch {
|
|
6338
6338
|
}
|
|
6339
6339
|
}
|
|
@@ -6342,12 +6342,12 @@ var DependencyInstaller = class {
|
|
|
6342
6342
|
default:
|
|
6343
6343
|
if (dockerApp) {
|
|
6344
6344
|
try {
|
|
6345
|
-
execFileSync2("open", [dockerApp], { timeout: 1e4, stdio: "ignore" });
|
|
6345
|
+
execFileSync2("open", ["-g", "-j", dockerApp], { timeout: 1e4, stdio: "ignore" });
|
|
6346
6346
|
} catch {
|
|
6347
6347
|
}
|
|
6348
6348
|
} else {
|
|
6349
6349
|
try {
|
|
6350
|
-
execFileSync2("open", ["-a", "Docker"], { timeout: 1e4, stdio: "ignore" });
|
|
6350
|
+
execFileSync2("open", ["-g", "-j", "-a", "Docker"], { timeout: 1e4, stdio: "ignore" });
|
|
6351
6351
|
} catch {
|
|
6352
6352
|
}
|
|
6353
6353
|
}
|