Add verbose guard

This commit is contained in:
Mitchell Borrego 2022-07-26 02:27:21 -04:00
parent 534a043a1e
commit 07e48b8629
No known key found for this signature in database
GPG key ID: BE864F77C8CFBB4C

View file

@ -176,7 +176,9 @@ const buildExec = () => {
uploaderVersion = 'latest';
}
console.debug({execArgs});
if (verbose) {
console.debug({execArgs});
}
return {execArgs, options, failCi, os, uploaderVersion, verbose};
};