From a3bb8657224ceb708077e4dbb37677b8f3270fa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20=C5=A0urda?= Date: Mon, 2 Jan 2023 14:12:10 +0800 Subject: [PATCH] Fix interpolation / quotes --- .buildbot/openwrt/Dockerfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.buildbot/openwrt/Dockerfile b/.buildbot/openwrt/Dockerfile index 1204acd..0c0d38a 100644 --- a/.buildbot/openwrt/Dockerfile +++ b/.buildbot/openwrt/Dockerfile @@ -15,14 +15,14 @@ RUN mkdir /Downloads WORKDIR /Downloads RUN wget -q \ - 'https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/\ + "https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/\ targets/bcm27xx/bcm2711/\ -openwrt-imagebuilder-${OPENWRT_VERSION}-bcm27xx-bcm2711.Linux-x86_64.tar.xz' +openwrt-imagebuilder-${OPENWRT_VERSION}-bcm27xx-bcm2711.Linux-x86_64.tar.xz" RUN wget -q \ - 'https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/\ + "https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/\ targets/bcm27xx/bcm2711/\ -openwrt-sdk-${OPENWRT_VERSION}-bcm27xx-bcm2711_gcc-11.2.0_musl.Linux-x86_64.tar.xz' +openwrt-sdk-${OPENWRT_VERSION}-bcm27xx-bcm2711_gcc-11.2.0_musl.Linux-x86_64.tar.xz" RUN wget -q \ - 'https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/\ + "https://downloads.openwrt.org/releases/${OPENWRT_VERSION}/\ targets/bcm27xx/bcm2711/\ -openwrt-toolchain-${OPENWRT_VERSION}-bcm27xx-bcm2711_gcc-11.2.0_musl.Linux-x86_64.tar.xz' +openwrt-toolchain-${OPENWRT_VERSION}-bcm27xx-bcm2711_gcc-11.2.0_musl.Linux-x86_64.tar.xz"