Skip to content

Commit

Permalink
workflow: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
JupiterPi committed Dec 19, 2024
1 parent 5287f2e commit ceea438
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packageAllPlatforms.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ for (const target of targets) {
})

// build binary using pkg via SEA
await pkg.exec(`--sea -t ${target.pkgTarget} -o ${workingDirectory}/filen-cli-${target.name} ${workingDirectory}/bundle-${target.name}.js ${target.name.includes("macos") ? "" : "--options max-old-space-size=16384"}`.split(" "))
await pkg.exec(`--sea -t ${target.pkgTarget} -o ${workingDirectory}/filen-cli-${target.name} ${workingDirectory}/bundle-${target.name}.js${target.name.includes("macos") ? "" : " --options max-old-space-size=16384"}`.split(" "))

// replace app icon (Windows)
if (target.pkgTarget.includes("win")) {
Expand Down

0 comments on commit ceea438

Please sign in to comment.