···1+From 1a260f75baabc304ea398aa67d203dd9aee11525 Mon Sep 17 00:00:00 2001
2+From: Chris Moultrie <821688+tebriel@users.noreply.github.com>
3+Date: Wed, 2 Jul 2025 21:12:22 -0400
4+Subject: [PATCH] test(fix): Use /bin/sh as mock_mpv.sh interpreter - 4301
5+6+Not all systems have bash at `/bin/bash`. `/bin/sh` is POSIX and should
7+be present on all systems making this much more portable. No bash
8+features are currently used in the script so this change should be safe.
9+---
10+ core/playback/mpv/mpv_test.go | 2 +-
11+ 1 file changed, 1 insertion(+), 1 deletion(-)
12+13+diff --git a/core/playback/mpv/mpv_test.go b/core/playback/mpv/mpv_test.go
14+index 08432bef..20c02501 100644
15+--- a/core/playback/mpv/mpv_test.go
16++++ b/core/playback/mpv/mpv_test.go
17+@@ -372,7 +372,7 @@ goto loop
18+ `
19+ } else {
20+ scriptExt = ".sh"
21+- scriptContent = `#!/bin/bash
22++ scriptContent = `#!/bin/sh
23+ echo "$0"
24+ for arg in "$@"; do
25+ echo "$arg"
26+--
27+2.49.0
28+