Skip to content

Commit

Permalink
feat: added "raise e" instead of swallowing ScriptExecutionFailed error
Browse files Browse the repository at this point in the history
  • Loading branch information
jc12690 committed Aug 27, 2024
1 parent 95af8f4 commit fc31586
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taf/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def run_subprocess(command):
return result
except subprocess.CalledProcessError as e:
taf_logger.error("An error occurred while executing {}: {}", command, e.output)
return None
raise e


def normalize_file_line_endings(file_path):
Expand Down

0 comments on commit fc31586

Please sign in to comment.