From e62090a4f4f429e200bf12021533fcc4bb4a5138 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 9 Nov 2020 13:49:40 +0000 Subject: [PATCH] dev-cmd/pr-upload: fix brew audit arguments. I accidentally committed an earlier version for this. --- Library/Homebrew/dev-cmd/pr-upload.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/pr-upload.rb b/Library/Homebrew/dev-cmd/pr-upload.rb index 99ccbab263..a7046c01ac 100644 --- a/Library/Homebrew/dev-cmd/pr-upload.rb +++ b/Library/Homebrew/dev-cmd/pr-upload.rb @@ -89,7 +89,7 @@ module Homebrew # Check the bottle commits did not break `brew audit` unless args.no_commit? - audit_args = ["bottle", "--merge", "--write"] + audit_args = ["audit", "--skip-style"] audit_args << "--verbose" if args.verbose? audit_args << "--debug" if args.debug? safe_system HOMEBREW_BREW_FILE, *audit_args