Skip to content

Commit a91138f

Browse files
committed
Default to 0
1 parent fb072be commit a91138f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

installation_and_upgrade/ibex_install_utils/run_process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ def __init__(
6868
if isinstance(expected_return_codes, int):
6969
expected_return_codes = [expected_return_codes]
7070
self._expected_return_codes = (
71-
expected_return_codes if expected_return_codes is not None else []
71+
expected_return_codes if expected_return_codes is not None else [0]
7272
)
7373
self.log_command_args = log_command_args
7474
if std_in is not None and self._capture_pipes:

0 commit comments

Comments
 (0)