From 82f9ebd613a33b5237a773a099ea0ebe3b6fda7b Mon Sep 17 00:00:00 2001 From: Anatoli Babenia Date: Thu, 26 Sep 2024 09:06:50 +0300 Subject: [PATCH] create: show audit command on the next line This makes it easy to copy/paste the command, which needs to be run anyway. --- Library/Homebrew/dev-cmd/create.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/create.rb b/Library/Homebrew/dev-cmd/create.rb index 089f65a9c5..a9ca744475 100644 --- a/Library/Homebrew/dev-cmd/create.rb +++ b/Library/Homebrew/dev-cmd/create.rb @@ -224,7 +224,10 @@ module Homebrew end PyPI.update_python_resources! formula, ignore_non_pypi_packages: true if args.python? - puts "Please run `HOMEBREW_NO_INSTALL_FROM_API=1 brew audit --new #{fc.name}` before submitting, thanks." + puts <<~EOS + Please run the following command before submitting, thanks. + HOMEBREW_NO_INSTALL_FROM_API=1 brew audit --new #{fc.name} + EOS path end