From 8f753e56ffbeb21150bbd9c02cb2676f866653b3 Mon Sep 17 00:00:00 2001 From: moi15moi Date: Tue, 10 Sep 2024 12:11:23 -0400 Subject: [PATCH] [workflows\run_test] On macOS, add --cask arg to install mkvtoolnix Before this commit, we get this log warning: Treating mkvtoolnix as a formula. For the cask, use homebrew/cask/mkvtoolnix or specify the `--cask` flag. --- .github/workflows/run_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run_test.yml b/.github/workflows/run_test.yml index 996bfa9..ecb325d 100644 --- a/.github/workflows/run_test.yml +++ b/.github/workflows/run_test.yml @@ -32,7 +32,7 @@ jobs: - name: Install platform-specific requirements (macOS) if: runner.os == 'macOS' - run: brew install mkvtoolnix + run: brew install --cask mkvtoolnix - name: Install platform-specific requirements (Windows) if: runner.os == 'Windows'