Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
abergs committed Feb 6, 2025
1 parent f260d4c commit 36310da
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions apps/desktop/scripts/after-sign.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ async function run(context) {

if (context.targets.some((e) => e.name === "mas-dev")) {
console.log("### Resigning autofill extension for development");
const { execSync } = require('child_process');
execSync(`codesign --force --sign "Mac Developer: Vince Grassia (KL9YM6L6GH)" --entitlements "${path.join(__dirname, '../macos/autofill-extension/autofill-extension.entitlements')}" "${extensionDestPath}"`);
const { execSync } = require("child_process");
execSync(
`codesign --force --sign "Mac Developer: Vince Grassia (KL9YM6L6GH)" --entitlements "${path.join(__dirname, "../macos/autofill-extension/autofill-extension.entitlements")}" "${extensionDestPath}"`,
);
}

shouldResign = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
map,
mergeMap,
switchMap,
takeUntil
takeUntil,
} from "rxjs";

import { AccountService } from "@bitwarden/common/auth/abstractions/account.service";
Expand Down

0 comments on commit 36310da

Please sign in to comment.