We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf25a32 commit 3c454d0Copy full SHA for 3c454d0
src/cli-installer/macos.ts
@@ -34,11 +34,11 @@ export class MacOSInstaller extends CliInstaller implements Installer {
34
const pkgWithExtension = `${pkgPath}.pkg`;
35
fs.renameSync(pkgPath, pkgWithExtension);
36
37
- const expandDir = "temp-pkg"
+ const expandDir = "temp-pkg";
38
await execAsync(`pkgutil --expand "${pkgWithExtension}" "${expandDir}"`);
39
const payloadPath = path.join(expandDir, "op.pkg", "Payload");
40
console.info("Installing 1Password CLI");
41
- const cliPath = await tc.extractTar(payloadPath)
+ const cliPath = await tc.extractTar(payloadPath);
42
core.addPath(cliPath);
43
44
fs.rmSync(expandDir, { recursive: true, force: true });
0 commit comments