From 8003c1f14065127875a1ccf51b0bb29a7d96c0b8 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 25 Oct 2024 23:36:12 -0400 Subject: [PATCH] Fix a missing space in a log message --- src/AutoMerge/guidelines.jl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/AutoMerge/guidelines.jl b/src/AutoMerge/guidelines.jl index c7dda044..bc87962a 100644 --- a/src/AutoMerge/guidelines.jl +++ b/src/AutoMerge/guidelines.jl @@ -1049,11 +1049,11 @@ function _run_pkg_commands( pushfirst!(cmd.exec, xvfb) end @info(before_message) - @info(string( - "IMPORTANT: If you see any messages of the form \"Error: Some registries failed to update\"", - "or \"registry dirty\", ", - "please disregard those messages. Those messages are normal and do not indicate an error.", - )) + @info(""" + IMPORTANT: If you see any messages of the form "Error: Some registries failed to update" + or "registry dirty" + please disregard those messages. Those messages are normal and do not indicate an error + """) cmd_ran_successfully = success(pipeline(cmd; stdout=stdout, stderr=stderr)) cd(original_directory)