From 5523f3a0ff5d624c3bd1efa5378296576eb6d3f4 Mon Sep 17 00:00:00 2001 From: "Tj (bougyman) Vanderpoel" Date: Sun, 9 Aug 2026 20:04:44 -0400 Subject: [PATCH] docs: document the macOS Gatekeeper quarantine fix for lc lc (the actual Burrito binary, unsigned/unnotarized) gets blocked by Gatekeeper after download - the wrapper scripts are plain shell so they're unaffected. Document xattr -d com.apple.quarantine. Closes #35. Co-Authored-By: Claude Sonnet 5 --- Readme.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Readme.adoc b/Readme.adoc index 5cd2bcc..02a1b45 100644 --- a/Readme.adoc +++ b/Readme.adoc @@ -56,6 +56,14 @@ $ sudo mv lc/* /usr/local/bin/ NOTE: A Homebrew tap is planned but not yet available. +On macOS, Gatekeeper blocks `lc` itself (the wrapper scripts are plain shell, +so they're unaffected) since it isn't signed/notarized yet: + +[source,sh] +---- +$ xattr -d com.apple.quarantine /usr/local/bin/lc +---- + === install.sh (builds from source, for machines without Homebrew) [source,sh]