fix(notevc): fixed notevc

This commit is contained in:
darwincereska
2025-11-10 16:50:11 -05:00
parent 7d4c107eb3
commit 0e87672c14
2 changed files with 5 additions and 1 deletions

View File

@@ -12,7 +12,11 @@ class Notevc < Formula
end
def install
bin.install "notevc"
if OS.mac?
bin.install "notevc-macos-arm64" => "notevc"
elsif OS.linux?
bin.install "notevc-linux-x64" => "notevc"
end
end
end