Unverified Commit 53a38d93 authored by Kroese's avatar Kroese Committed by GitHub
Browse files

fix: Quote variable (#341)

parent a19b245b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -21,10 +21,10 @@ RUN apt-get update \
	ca-certificates \
	netcat-openbsd \
	qemu-system-x86 \
    && novnc="v1.4.0" \
    && wget https://github.com/novnc/noVNC/archive/refs/tags/$novnc.tar.gz -O /tmp/novnc.tar.gz -q \
    && novnc="1.4.0" \
    && wget https://github.com/novnc/noVNC/archive/refs/tags/v"$novnc".tar.gz -O /tmp/novnc.tar.gz -q \
    && tar -xf /tmp/novnc.tar.gz -C /tmp/ \
    && cd /tmp/noVNC-$novnc \
    && cd /tmp/noVNC-"$novnc" \
    && mkdir -p /usr/share/novnc \    
    && mv app core vendor package.json *.html /usr/share/novnc \
    && apt-get clean \