diff --git a/engine/src/flutter/tools/activate_emsdk.py b/engine/src/flutter/tools/activate_emsdk.py index ad9a8bc131..30fd1b0d6d 100644 --- a/engine/src/flutter/tools/activate_emsdk.py +++ b/engine/src/flutter/tools/activate_emsdk.py @@ -21,14 +21,16 @@ def main(): try: subprocess.check_call([ sys.executable, EMSDK_PATH, 'install', EMSDK_VERSION - ]) + ], + stdout=subprocess.DEVNULL) except subprocess.CalledProcessError: print('Failed to install emsdk') return 1 try: subprocess.check_call([ sys.executable, EMSDK_PATH, 'activate', EMSDK_VERSION - ]) + ], + stdout=subprocess.DEVNULL) except subprocess.CalledProcessError: print('Failed to activate emsdk') return 1