We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a98017 commit ee2efa7Copy full SHA for ee2efa7
src/ugrd/generator_helpers.py
@@ -9,9 +9,7 @@
9
10
from .exceptions import ValidationError
11
12
-__version__ = "1.7.0"
13
-__author__ = "desultory"
14
-
+__version__ = "1.7.1"
15
16
_RANDOM_BUILD_ID = str(uuid4())
17
@@ -240,7 +238,7 @@ def print_err(ret) -> None:
240
238
if not fail_silent:
241
239
print_err(cmd) # Print the full error output if not failing silently
242
if fail_hard: # Fail hard means raise an exception
243
- raise RuntimeError("Failed to run command: %s" % " ".join(cmd.args))
+ raise RuntimeError("Failed to run command: %s" % c_(" ".join(cmd.args), "red", bright=True))
244
245
return cmd
246
0 commit comments