Skip to content

Commit 3c454d0

Browse files
Fix formatting
1 parent bf25a32 commit 3c454d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cli-installer/macos.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ export class MacOSInstaller extends CliInstaller implements Installer {
3434
const pkgWithExtension = `${pkgPath}.pkg`;
3535
fs.renameSync(pkgPath, pkgWithExtension);
3636

37-
const expandDir = "temp-pkg"
37+
const expandDir = "temp-pkg";
3838
await execAsync(`pkgutil --expand "${pkgWithExtension}" "${expandDir}"`);
3939
const payloadPath = path.join(expandDir, "op.pkg", "Payload");
4040
console.info("Installing 1Password CLI");
41-
const cliPath = await tc.extractTar(payloadPath)
41+
const cliPath = await tc.extractTar(payloadPath);
4242
core.addPath(cliPath);
4343

4444
fs.rmSync(expandDir, { recursive: true, force: true });

0 commit comments

Comments
 (0)