Skip to content

Commit 1893fde

Browse files
committed
Remove extra whitespace from run commands
I think this is safe, but it would be best to be careful during the next release.
1 parent 9ff20c5 commit 1893fde

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def ask_to_run_command(command,
9898
stdout_data.append(decoded_chunk) # Store for later
9999

100100
return_code = proc.wait()
101-
output = ''.join(stdout_data)
101+
output = ''.join(stdout_data).strip()
102102
if return_code == 0:
103103
return output
104104
elif expected_nonzero_exit_codes and return_code in expected_nonzero_exit_codes:

0 commit comments

Comments
 (0)