Skip to content

Commit

Permalink
Fix a missing space in a log message (#579)
Browse files Browse the repository at this point in the history
* Fix a missing space in a log message

* Apply suggestions from code review

Co-authored-by: Eric Hanson <[email protected]>

---------

Co-authored-by: Eric Hanson <[email protected]>
  • Loading branch information
DilumAluthge and ericphanson authored Oct 26, 2024
1 parent fb7ade6 commit e5091d5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/AutoMerge/guidelines.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit e5091d5

Please sign in to comment.