From 9f87de2c25ed0efe5a2ec450351a9c6c52d6e8f7 Mon Sep 17 00:00:00 2001 From: Mihai PLESA Date: Mon, 6 Dec 2021 12:49:32 -0500 Subject: [PATCH] output dir fix (#11436) --- build/commands/lib/config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/commands/lib/config.js b/build/commands/lib/config.js index b618a39865e..ae0f7d35b40 100755 --- a/build/commands/lib/config.js +++ b/build/commands/lib/config.js @@ -925,7 +925,7 @@ Object.defineProperty(Config.prototype, 'outputDir', { if (this.targetArch && this.targetArch != 'x64') { buildConfigDir = buildConfigDir + '_' + this.targetArch } - if (this.targetOS) { + if (this.targetOS && (this.targetOS === 'android' || this.targetOS === 'ios')) { buildConfigDir = this.targetOS + "_" + buildConfigDir } if (this.targetEnvironment) {