From 6b547a5c5e9ad31054d3fae0f851c66a0b82ddb7 Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Mon, 20 Apr 2020 15:16:08 -0700 Subject: [PATCH] pr-upload: Fix a bug introduced by PR #7406 Fix the error: Error: No such file or directory @ rb_sysopen - bottle --- 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 34c38af237..36382b9908 100644 --- a/Library/Homebrew/dev-cmd/pr-upload.rb +++ b/Library/Homebrew/dev-cmd/pr-upload.rb @@ -38,7 +38,7 @@ module Homebrew if args.dry_run? puts "brew #{bottle_args.join " "}" else - system HOMEBREW_BREW_FILE, "bottle", *bottle_args + system HOMEBREW_BREW_FILE, *bottle_args end if args.dry_run?