From 9b9a4d9631725d4297aae2696c03b9de5c1ea56d Mon Sep 17 00:00:00 2001 From: Intel A80486DX2-66 Date: Tue, 2 Jan 2024 18:14:04 +0300 Subject: [PATCH] bytebeat_compiler.py: flush before calling command --- bytebeat_compiler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 0beb536..f3f22c1 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -169,5 +169,5 @@ if __name__ == "__main__": # Let the system execute aliases by calling os.system command = " ".join([CC, CFLAGS, INPUT_FILE, PATHS["fwrite_le"], "-o", OUTPUT_FILE]) - print(command) + print(command, flush=True) system(command)