Skip to content

Commit

Permalink
chore: Rename vmRequired variable to useVmIfNotOnWin (#8727)
Browse files Browse the repository at this point in the history
  • Loading branch information
NoahAndrews authored Dec 6, 2024
1 parent 6633450 commit 7268c2e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/shy-pumas-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"app-builder-lib": patch
---

chore: Rename `vmRequired` variable to `useVmIfNotOnWin`
Original file line number Diff line number Diff line change
Expand Up @@ -438,11 +438,11 @@ export class WindowsSignToolManager implements SignManager {
let args: Array<string>
let env = process.env
let vm: VmManager
const vmRequired = configuration.path.endsWith(".appx") || !("file" in configuration.cscInfo!) /* certificateSubjectName and other such options */
const isWin = process.platform === "win32" || vmRequired
const useVmIfNotOnWin = configuration.path.endsWith(".appx") || !("file" in configuration.cscInfo!) /* certificateSubjectName and other such options */
const isWin = process.platform === "win32" || useVmIfNotOnWin
const toolInfo = await this.getToolPath(isWin)
const tool = toolInfo.path
if (vmRequired) {
if (useVmIfNotOnWin) {
vm = await packager.vm.value
args = this.computeSignToolArgs(configuration, isWin, vm)
} else {
Expand Down

0 comments on commit 7268c2e

Please sign in to comment.