aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian J. Murrell <brian@interlinx.bc.ca>2023-09-12 15:09:40 -0400
committerGitHub <noreply@github.com>2023-09-12 13:09:40 -0600
commit3f19befc594670d72c2611f103e703633960e0aa (patch)
tree1ce3d5081c12758ae7b4acedfe92ab805647861f
parent47b21bd781385edb2bdbde96b180005e99d9919c (diff)
Avoid shell expansion issues (#10211)
-rw-r--r--fedora/jellyfin-selinux-launcher.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/fedora/jellyfin-selinux-launcher.sh b/fedora/jellyfin-selinux-launcher.sh
index a735a238f..e07a351d9 100644
--- a/fedora/jellyfin-selinux-launcher.sh
+++ b/fedora/jellyfin-selinux-launcher.sh
@@ -1,3 +1,3 @@
#!/bin/sh
-exec /usr/lib64/jellyfin/jellyfin ${@}
+exec /usr/lib64/jellyfin/jellyfin "${@}"