From 06f6eeee3a7aaea881d7b399454762f65c8cec87 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Wed, 7 Oct 2020 08:29:32 +0200 Subject: Added Linux exit status and output conversion to macos --- src/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.py') diff --git a/src/main.py b/src/main.py index fcb228f..2ed2e00 100755 --- a/src/main.py +++ b/src/main.py @@ -37,7 +37,7 @@ def main(): if config.MINISHELL_MAKE or args.make: try: print("========================================MAKE====================================") - subprocess.run(["make", "-C", config.MINISHELL_DIR], + subprocess.run(["make", "--no-print-directory", "-C", config.MINISHELL_DIR], check=True, env={"MINISHELL_TEST_FLAGS": "-DMINISHELL_TEST", **os.environ}) print("================================================================================") -- cgit