Skip to content

Commit

Permalink
Update custom command to output stdout and stderr to the console
Browse files Browse the repository at this point in the history
Signed-off-by: Steve Pham <[email protected]>
  • Loading branch information
spham-amzn committed Apr 6, 2024
1 parent 803b082 commit 40f37f0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Scripts/extras/pull_and_build_from_git.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,8 @@ def build_and_install_custom(self):

call_result = subprocess.run(full_custom_build_cmd,
shell=True,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
capture_output=False,
cwd=str(self.base_folder),
env=env_to_use)
Expand Down

0 comments on commit 40f37f0

Please sign in to comment.