@commandgarden/cli 1.4.0 → 1.4.1
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/main.js +1 -1
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -17416,7 +17416,7 @@ function executeExtensionSetup(baseDir) {
|
|
|
17416
17416
|
"dist/manifest.json"
|
|
17417
17417
|
);
|
|
17418
17418
|
const extensionDir = dirname2(manifestPath);
|
|
17419
|
-
const [command, args] = process.platform === "darwin" ? ["open", ["chrome://extensions"]] : process.platform === "win32" ? ["cmd", ["/c", "start", "", "chrome://extensions"]] : ["
|
|
17419
|
+
const [command, args] = process.platform === "darwin" ? ["open", ["-a", "Google Chrome", "chrome://extensions"]] : process.platform === "win32" ? ["cmd", ["/c", "start", "chrome", "chrome://extensions"]] : ["google-chrome", ["chrome://extensions"]];
|
|
17420
17420
|
const child = spawn3(command, args, { stdio: "ignore", detached: true });
|
|
17421
17421
|
child.on("error", () => {
|
|
17422
17422
|
});
|