1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-11 14:04:03 +00:00

try target instead of targetNames

This commit is contained in:
Jake Fink
2025-01-14 23:10:25 -05:00
parent 87798f1ae7
commit 2db6741195

View File

@@ -1,9 +1,8 @@
/* eslint-disable @typescript-eslint/no-require-imports, no-console */
const { Platform } = require("electron-builder");
const path = require("path");
const { Platform } = require("electron-builder");
const fse = require("fs-extra");
exports.default = run;
@@ -12,7 +11,7 @@ async function run(context) {
console.log("## Before pack");
const platform = context.packager.platform;
const targets = context.packager.targetNames;
const targets = context.packager.targets;
console.log("### Platform: " + platform);
console.log("### Targets: " + targets);