Skip to content

Commit

Permalink
🔀️ Merge branch 'fix-style-warnings'
Browse files Browse the repository at this point in the history
  • Loading branch information
ladislas committed Oct 29, 2024
2 parents 532bab0 + bca9fcb commit c15997a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Formula/arm-none-eabi-binutils.rb
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def install
system "make", "install"
end

info.rmtree # info files conflict with native binutils
rm_r(info) # info files conflict with native binutils
end

test do
Expand Down
4 changes: 2 additions & 2 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ def install
end

# info and man7 files conflict with native gcc
info.rmtree
man7.rmtree
rm_r(info)
rm_r(rmtree)
end

test do
Expand Down
4 changes: 2 additions & 2 deletions Formula/[email protected]
Original file line number Diff line number Diff line change
Expand Up @@ -259,8 +259,8 @@ def install
end

# info and man7 files conflict with native gcc
info.rmtree
man7.rmtree
rm_r(info)
rm_r(man7)
end

test do
Expand Down

0 comments on commit c15997a

Please sign in to comment.