From ee0e9a86eb9e9149d4f53439195ed13ac107de5f Mon Sep 17 00:00:00 2001 From: Rui Chen <rui@meetup.com> Date: Sun, 1 Nov 2020 17:25:50 -0500 Subject: [PATCH] audit: bypass artifact check for vifm-osx-0.11 ``` ==> FAILED Formula/vifm.rb:4:3: C: https://github.com/vifm/vifm/releases/download/v0.11/vifm-osx-0.11.tar.bz2 looks like a binary package, not a source archive; homebrew/core is source-only. url "https://github.com/vifm/vifm/releases/download/v0.11/vifm-osx-0.11.tar.bz2" ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ``` --- Library/Homebrew/rubocops/urls.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/rubocops/urls.rb b/Library/Homebrew/rubocops/urls.rb index cbb9b95025..8e583a01b1 100644 --- a/Library/Homebrew/rubocops/urls.rb +++ b/Library/Homebrew/rubocops/urls.rb @@ -22,6 +22,7 @@ module RuboCop https://osxbook.com/book/bonus/chapter8/core/download/gcore https://naif.jpl.nasa.gov/pub/naif/toolkit/C/MacIntel_OSX_AppleC_64bit/packages/ https://artifacts.videolan.org/x264/release-macos/ + https://github.com/vifm/vifm/releases/download ].freeze # These are formulae that, sadly, require an upstream binary to bootstrap. -- GitLab