Skip to content

Commit a930264

Browse files
committed
fix(homebrew): use rm_r instead of rm_rf per brew audit
1 parent 0e7372d commit a930264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packaging/homebrew/mfc.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class Mfc < Formula
2727
def install
2828
# Create Python virtual environment (remove existing one first for clean reinstalls)
2929
venv = libexec/"venv"
30-
rm_rf venv
30+
rm_r(venv, force: true)
3131
system Formula["[email protected]"].opt_bin/"python3.12", "-m", "venv", venv
3232
system venv/"bin/pip", "install", "--upgrade", "pip", "setuptools", "wheel"
3333

0 commit comments

Comments
 (0)