diff --git a/bytebeat_compiler.py b/bytebeat_compiler.py index 5075eb0..e37c986 100644 --- a/bytebeat_compiler.py +++ b/bytebeat_compiler.py @@ -161,5 +161,7 @@ if __name__ == "__main__": print("Compiling") # Let the system execute aliases by calling os.system - system(" ".join([CC, CFLAGS, INPUT_FILE, PATHS["path_to_fwrite_le"], - "-o", OUTPUT_FILE]) + command = " ".join([CC, CFLAGS, INPUT_FILE, PATHS["path_to_fwrite_le"], + "-o", OUTPUT_FILE]) + print(command) + system(command)