do not report error when no unity build report printed as default, since we are using custom builders

pull/571/head
ninetyninereds 2023-09-13 11:10:25 +03:00
parent 67c3729207
commit 7a7db1e98c
3 changed files with 3 additions and 3 deletions

2
dist/index.js generated vendored
View File

@ -5863,7 +5863,7 @@ const node_path_1 = __importDefault(__nccwpck_require__(49411));
class Docker {
static async run(image, parameters, silent = false, overrideCommands = '', additionalVariables = [],
// eslint-disable-next-line unicorn/no-useless-undefined
options = undefined, entrypointBash = false, errorWhenMissingUnityBuildResults = true) {
options = undefined, entrypointBash = false, errorWhenMissingUnityBuildResults = false) {
let runCommand = '';
switch (process.platform) {
case 'linux':

2
dist/index.js.map generated vendored

File diff suppressed because one or more lines are too long

View File

@ -15,7 +15,7 @@ class Docker {
// eslint-disable-next-line unicorn/no-useless-undefined
options: ExecOptions | undefined = undefined,
entrypointBash: boolean = false,
errorWhenMissingUnityBuildResults: boolean = true,
errorWhenMissingUnityBuildResults: boolean = false,
) {
let runCommand = '';
switch (process.platform) {