diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..fa4f4c4 Binary files /dev/null and b/.DS_Store differ diff --git a/Formula/notevc.rb b/Formula/notevc.rb index 30f234c..2ed9b28 100644 --- a/Formula/notevc.rb +++ b/Formula/notevc.rb @@ -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