Skip to content

Commit

Permalink
HaikuPorter: check_call not check_output for cleanupChrootScript.
Browse files Browse the repository at this point in the history
That way, we can see its output.
  • Loading branch information
waddlesplash committed Feb 28, 2023
1 parent b3987b8 commit 9ba1c5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HaikuPorter/Port.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ def __exit__(self, ignoredType, value, traceback):
shellEnv.update(self.envVars)
if self.buildOk:
shellEnv['buildOk'] = '1'
check_output(['bash', '-c', cleanupChrootScript], env=shellEnv,
cwd=self.path).decode('utf-8')
check_call(['bash', '-c', cleanupChrootScript], env=shellEnv,
cwd=self.path)



Expand Down

0 comments on commit 9ba1c5c

Please sign in to comment.