···11+From 1a260f75baabc304ea398aa67d203dd9aee11525 Mon Sep 17 00:00:00 2001
22+From: Chris Moultrie <821688+tebriel@users.noreply.github.com>
33+Date: Wed, 2 Jul 2025 21:12:22 -0400
44+Subject: [PATCH] test(fix): Use /bin/sh as mock_mpv.sh interpreter - 4301
55+66+Not all systems have bash at `/bin/bash`. `/bin/sh` is POSIX and should
77+be present on all systems making this much more portable. No bash
88+features are currently used in the script so this change should be safe.
99+---
1010+ core/playback/mpv/mpv_test.go | 2 +-
1111+ 1 file changed, 1 insertion(+), 1 deletion(-)
1212+1313+diff --git a/core/playback/mpv/mpv_test.go b/core/playback/mpv/mpv_test.go
1414+index 08432bef..20c02501 100644
1515+--- a/core/playback/mpv/mpv_test.go
1616++++ b/core/playback/mpv/mpv_test.go
1717+@@ -372,7 +372,7 @@ goto loop
1818+ `
1919+ } else {
2020+ scriptExt = ".sh"
2121+- scriptContent = `#!/bin/bash
2222++ scriptContent = `#!/bin/sh
2323+ echo "$0"
2424+ for arg in "$@"; do
2525+ echo "$arg"
2626+--
2727+2.49.0
2828+