We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12fdfb9 commit 026f7f8Copy full SHA for 026f7f8
1 file changed
Formula/vigil.rb
@@ -29,6 +29,11 @@ def install
29
# staging (it descends into a single root dir), so the binary stages as
30
# ./vigil — NOT ./bin/vigil, so installing the "bin/vigil" path ENOENTs.
31
bin.install "vigil"
32
+ # darwin tarballs ship the Touch ID helper as a SIBLING of vigil, and the
33
+ # runtime resolves it via dirname(process.execPath) — installing only
34
+ # "vigil" silently ships brew installs WITHOUT biometric unlock. Linux
35
+ # tarballs have no helper, hence the existence guard.
36
+ bin.install "vigil-touchid" if File.exist?("vigil-touchid")
37
end
38
39
test do
0 commit comments