Skip to content

Commit bf0855e

Browse files
Prepare release v2.0.2
1 parent ca2fb55 commit bf0855e

File tree

3 files changed

+5
-12
lines changed

3 files changed

+5
-12
lines changed

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32824,7 +32824,7 @@ var external_util_ = __nccwpck_require__(9023);
3282432824

3282532825

3282632826

32827-
const execAsync = (0,external_util_.promisify)(external_child_process_.exec);
32827+
const execFileAsync = (0,external_util_.promisify)(external_child_process_.execFile);
3282832828
class MacOsInstaller extends CliInstaller {
3282932829
platform = "darwin"; // Node.js platform identifier for macOS
3283032830
constructor(version) {
@@ -32841,7 +32841,7 @@ class MacOsInstaller extends CliInstaller {
3284132841
const pkgWithExtension = `${pkgPath}.pkg`;
3284232842
external_fs_.renameSync(pkgPath, pkgWithExtension);
3284332843
const expandDir = "temp-pkg";
32844-
await execAsync(`pkgutil --expand "${pkgWithExtension}" "${expandDir}"`);
32844+
await execFileAsync("pkgutil", ["--expand", pkgWithExtension, expandDir]);
3284532845
const payloadPath = external_path_.join(expandDir, "op.pkg", "Payload");
3284632846
console.info("Installing 1Password CLI");
3284732847
const cliPath = await tool_cache.extractTar(payloadPath);

package-lock.json

Lines changed: 2 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "install-cli-action",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "Install 1Password CLI into your GitHub Actions jobs",
55
"main": "dist/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)