diff options
| author | Brian J. Murrell <brian@interlinx.bc.ca> | 2023-09-12 15:09:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-12 13:09:40 -0600 |
| commit | 3f19befc594670d72c2611f103e703633960e0aa (patch) | |
| tree | 1ce3d5081c12758ae7b4acedfe92ab805647861f | |
| parent | 47b21bd781385edb2bdbde96b180005e99d9919c (diff) | |
Avoid shell expansion issues (#10211)
| -rw-r--r-- | fedora/jellyfin-selinux-launcher.sh | 2 |
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 "${@}" |
