Auto-fix formatting issues
This commit is contained in:
5
bin/builders/LinuxBuilder.ts
vendored
5
bin/builders/LinuxBuilder.ts
vendored
@@ -81,7 +81,10 @@ export default class LinuxBuilder extends BaseBuilder {
|
||||
// Enable verbose output for AppImage builds when debugging or PAKE_VERBOSE is set.
|
||||
// AppImage builds often fail with minimal error messages from linuxdeploy,
|
||||
// so verbose mode helps diagnose issues like strip failures and missing dependencies.
|
||||
if (this.options.targets === 'appimage' && (this.options.debug || process.env.PAKE_VERBOSE)) {
|
||||
if (
|
||||
this.options.targets === 'appimage' &&
|
||||
(this.options.debug || process.env.PAKE_VERBOSE)
|
||||
) {
|
||||
fullCommand += ' --verbose';
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user