pi-chrome 0.1.1 → 0.1.2
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.
|
@@ -303,7 +303,7 @@ If chrome_* tools time out, ask the user to run /chrome-onboard, then load the b
|
|
|
303
303
|
}
|
|
304
304
|
if (process.platform === "darwin") {
|
|
305
305
|
await pi.exec("open", ["-a", "Google Chrome", "chrome://extensions"], { cwd: workspaceCwd(ctx), timeout: 5_000 }).catch(() => undefined);
|
|
306
|
-
await pi.exec("open", ["-R",
|
|
306
|
+
await pi.exec("open", ["-R", extensionPath], { cwd: workspaceCwd(ctx), timeout: 5_000 }).catch(() => undefined);
|
|
307
307
|
await pi.exec("sh", ["-lc", `printf %s ${JSON.stringify(extensionPath)} | pbcopy`], { cwd: workspaceCwd(ctx), timeout: 5_000 }).catch(() => undefined);
|
|
308
308
|
}
|
|
309
309
|
ctx.ui.notify(
|
package/package.json
CHANGED