Skip to content

Commit

Permalink
wxwidgets: Fix Homebrew/NoFileutilsRmrf RuboCop offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
issyl0 committed Jul 27, 2024
1 parent 2141cdb commit 5f6699b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Formula/w/wxwidgets.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ class Wxwidgets < Formula

def install
# Remove all bundled libraries excluding `nanosvg` which isn't available as formula
%w[catch pcre].each { |l| (buildpath/"3rdparty"/l).rmtree }
%w[expat jpeg png tiff zlib].each { |l| (buildpath/"src"/l).rmtree }
%w[catch pcre].each { |l| rm_r(buildpath/"3rdparty"/l) }
%w[expat jpeg png tiff zlib].each { |l| rm_r(buildpath/"src"/l) }

args = [
"--prefix=#{prefix}",
Expand Down

0 comments on commit 5f6699b

Please sign in to comment.