Skip to content

Commit ddfd3dc

Browse files
authored
[Impeller] Avoid printing inactionable warning from Metal compiler (#39859)
[Impeller] Avoid printing inactionable warning from Metal compiler
1 parent 582672a commit ddfd3dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

impeller/tools/build_metal_library.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def main():
111111

112112
command += args.source
113113

114-
subprocess.check_call(command)
114+
subprocess.check_output(command, stderr=subprocess.STDOUT)
115115

116116

117117
if __name__ == '__main__':

0 commit comments

Comments
 (0)