add "" arround the download link

This commit is contained in:
Quinten
2023-06-10 14:43:36 +02:00
committed by GitHub
parent 2fd5f661c6
commit 9def2c93ab

View File

@@ -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*.*