diff options
| author | Marc Brooks <IDisposable@gmail.com> | 2026-05-19 17:29:27 -0500 |
|---|---|---|
| committer | Marc Brooks <IDisposable@gmail.com> | 2026-05-19 17:29:27 -0500 |
| commit | 8384ef8a04fcee5942b0325a8bac6751117109c8 (patch) | |
| tree | 2a6a35a006e6f1e84817c59756f57c760ca23132 | |
| parent | 2b2db769483be9b0ddf1982daacd9cac56a05d5a (diff) | |
Use --batch --yes for installing jellyfin keyring in devcontainer
Fixes the .devcontainer setup's install-ffmpeg.sh halting at
File '/etc/apt/keyrings/jellyfin.gpg' exists. Overwrite? (y/N)
| -rw-r--r-- | .devcontainer/install-ffmpeg.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.devcontainer/install-ffmpeg.sh b/.devcontainer/install-ffmpeg.sh index 1e58e6ef44..1344634630 100644 --- a/.devcontainer/install-ffmpeg.sh +++ b/.devcontainer/install-ffmpeg.sh @@ -15,7 +15,7 @@ sudo apt-get install software-properties-common -y sudo add-apt-repository universe -y sudo mkdir -p /etc/apt/keyrings -curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/jellyfin.gpg +curl -fsSL https://repo.jellyfin.org/jellyfin_team.gpg.key | sudo gpg --batch --yes --dearmor -o /etc/apt/keyrings/jellyfin.gpg export VERSION_OS="$( awk -F'=' '/^ID=/{ print $NF }' /etc/os-release )" export VERSION_CODENAME="$( awk -F'=' '/^VERSION_CODENAME=/{ print $NF }' /etc/os-release )" export DPKG_ARCHITECTURE="$( dpkg --print-architecture )" |
