Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
idleberg committed Mar 22, 2024
1 parent e7fdb32 commit 08ff247
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ function detectOutfile(str: string): null | string {
function formatOutput(stream: Makensis.StreamOptions, args: Array<string>, opts: Makensis.CompilerOptions): Makensis.StreamOptionsFormatted {
const stdOut = stream.stdout.toString().trim();
const stdErr = stream.stderr.toString().trim();

const output: Makensis.StreamOptionsFormatted = {
stdout: stdOut,
stderr: stdErr,
Expand Down Expand Up @@ -118,7 +119,6 @@ export async function mapArguments(args: string[], options: Makensis.CompilerOpt

let cmd: string;


if (platform() !== 'win32' && options.wine === true) {
console.warn('Wine support has been degraded to an experimental feature, but it will be continued to be supported for the time being.');

Expand Down

0 comments on commit 08ff247

Please sign in to comment.