From e12e84431282fdb44f75a73fd080ae2233568620 Mon Sep 17 00:00:00 2001 From: Evgenii Alekseev Date: Mon, 17 Aug 2026 13:22:51 +0300 Subject: [PATCH] build: remove unused backslashes --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4c8b82f2..97ee7b32 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -8,7 +8,7 @@ ARG BUILD_DATE RUN useradd -m -d "/home/build" -s "/usr/bin/nologin" build ## extract container creation date and set mirror for this timestamp, set PKGEXT and refresh database next -RUN echo "Server = https://archive.archlinux.org/repos/${BUILD_DATE//-/\/}/\$repo/os/\$arch" > "/etc/pacman.d/mirrorlist" && \ +RUN echo "Server = https://archive.archlinux.org/repos/${BUILD_DATE//-//}/\$repo/os/\$arch" > "/etc/pacman.d/mirrorlist" && \ pacman -Syyuu --noconfirm ## setup package cache RUN runuser -u build -- mkdir "/tmp/pkg" && \