From 3f19befc594670d72c2611f103e703633960e0aa Mon Sep 17 00:00:00 2001 From: "Brian J. Murrell" Date: Tue, 12 Sep 2023 15:09:40 -0400 Subject: [PATCH] Avoid shell expansion issues (#10211) --- fedora/jellyfin-selinux-launcher.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fedora/jellyfin-selinux-launcher.sh b/fedora/jellyfin-selinux-launcher.sh index a735a238ff..e07a351d9a 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 "${@}"