From b201ba93f0184d80250979f029fd66db1af3ec3f Mon Sep 17 00:00:00 2001 From: Karol Bonat <karbon@staszic.waw.pl> Date: Fri, 2 Aug 2024 13:13:14 +0200 Subject: [PATCH] Fix error in command in warning message of ingen --- src/sinol_make/commands/ingen/ingen_util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sinol_make/commands/ingen/ingen_util.py b/src/sinol_make/commands/ingen/ingen_util.py index 35fb28a..2c6eecb 100644 --- a/src/sinol_make/commands/ingen/ingen_util.py +++ b/src/sinol_make/commands/ingen/ingen_util.py @@ -100,7 +100,7 @@ def run_ingen(ingen_exe, working_dir=None): if util.has_sanitizer_error(whole_output, exit_code): print(util.warning('Warning: if ingen failed due to sanitizer errors, you can either run ' - '`sudo sysctl vm.mmap_rnd_bits = 28` to fix this or disable sanitizers with the ' + '`sudo sysctl vm.mmap_rnd_bits=28` to fix this or disable sanitizers with the ' '--no-fsanitize flag.')) return exit_code == 0 -- GitLab