From 9def2c93ab05a9ca1d2ba608728b8a0906632679 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Sat, 10 Jun 2023 14:43:36 +0200 Subject: [PATCH] add "" arround the download link --- steamcmd/proton/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steamcmd/proton/Dockerfile b/steamcmd/proton/Dockerfile index ee9f499..b7d390c 100644 --- a/steamcmd/proton/Dockerfile +++ b/steamcmd/proton/Dockerfile @@ -13,7 +13,7 @@ RUN apt install -y alsa-tools libpulse0 pulseaudio libpulse-dev libasoun RUN useradd -d /home/container -m container # Download Proton GE -RUN curl -sLOJ $(curl -s https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest | grep browser_download_url | cut -d\" -f4 | egrep .tar.gz) +RUN curl -sLOJ "$(curl -s https://api.github.com/repos/GloriousEggroll/proton-ge-custom/releases/latest | grep browser_download_url | cut -d\" -f4 | egrep .tar.gz)" RUN tar -xzf GE-Proton*.tar.gz -C /usr/local/bin/ --strip-components=1 RUN rm GE-Proton*.*