From fc398f7a2a984dcb1c268f9cc182e117585db6dd Mon Sep 17 00:00:00 2001 From: seung6lee Date: Wed, 15 Jul 2026 22:04:08 +0900 Subject: [PATCH] add auto trust operation --- brewfile_tool.py | 1 + 1 file changed, 1 insertion(+) diff --git a/brewfile_tool.py b/brewfile_tool.py index b5b449b..0cdaca5 100644 --- a/brewfile_tool.py +++ b/brewfile_tool.py @@ -107,6 +107,7 @@ def handle_untrusted_taps(): for tap in sorted(taps): try: subprocess.run(['brew', 'tap', tap], check=True) + subprocess.run(['brew', 'trust', tap], check=True) print(f'✅ Successfully installed tap "{tap}"') except subprocess.CalledProcessError as e: print(f'❌ Failed to install tap "{tap}" ({e.returncode})')