do not report error when no unity build report printed as default, since we are using custom builders
parent
67c3729207
commit
7a7db1e98c
|
@ -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':
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue