mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Pass --force-color
to nox
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
736254a321
commit
ee8fcbf0e6
1 changed files with 3 additions and 1 deletions
|
@ -138,7 +138,9 @@ def download_nox_artifact(
|
|||
if nox is None:
|
||||
ctx.error("Could not find the 'nox' binary in $PATH")
|
||||
return ExitCode.FAIL
|
||||
ret = ctx.run(nox, "-e", "decompress-dependencies", "--", slug, check=False)
|
||||
ret = ctx.run(
|
||||
nox, "--force-color", "-e", "decompress-dependencies", "--", slug, check=False
|
||||
)
|
||||
if ret.returncode:
|
||||
ctx.error("Failed to decompress the nox dependencies")
|
||||
return ExitCode.FAIL
|
||||
|
|
Loading…
Add table
Reference in a new issue