summaryrefslogtreecommitdiffstats
path: root/ci/build-macos.sh
diff options
context:
space:
mode:
authorDudemanguy <random342@airmail.cc>2023-02-26 11:22:27 -0600
committerDudemanguy <random342@airmail.cc>2023-03-02 15:45:27 +0000
commit61532421571f972f076b3700d7ae468c0a0438c0 (patch)
treeead9d540aba8c86f2791a226ec29b07c78c1774b /ci/build-macos.sh
parent3535e326dcb8b7d46e2fa9c43ec330d348a4bf6e (diff)
downloadmpv-61532421571f972f076b3700d7ae468c0a0438c0.tar.bz2
mpv-61532421571f972f076b3700d7ae468c0a0438c0.tar.xz
ci: use the same arguments when running the built mpv binary
A couple of places didn't have -v --no-config so just use them everywhere.
Diffstat (limited to 'ci/build-macos.sh')
-rwxr-xr-xci/build-macos.sh5
1 files changed, 2 insertions, 3 deletions
diff --git a/ci/build-macos.sh b/ci/build-macos.sh
index cb465b3f51..00124107a0 100755
--- a/ci/build-macos.sh
+++ b/ci/build-macos.sh
@@ -22,7 +22,7 @@ if [[ $1 = "meson" ]]; then
meson test -C build
meson install -C build
- ./build/mpv
+ ./build/mpv -v --no-config
fi
if [[ $1 = "waf" ]]; then
@@ -40,7 +40,6 @@ if [[ $1 = "waf" ]]; then
--swift-flags="${CI_SWIFT_FLAGS}"
python3 ./waf build --variant="${MPV_VARIANT}" -j4
-
python3 ./waf install --variant="${MPV_VARIANT}"
- ${MPV_INSTALL_PREFIX}/bin/mpv
+ ${MPV_INSTALL_PREFIX}/bin/mpv -v --no-config
fi