From ecc60aba2c465235768d20c36ed7e17a6a91e33b Mon Sep 17 00:00:00 2001 From: Jeffrey Larson Date: Sun, 3 Jul 2022 20:53:32 -0700 Subject: [PATCH] Handle upstream formatting change: spaces not tab Upstream lsio commit 7c0eb4e6761f5a48d8ce88facd24e2ed4c16f246 in github.com/linuxserver/docker-qbittorrent changed the formatting of the line being patched here and broke the sed replacement. Update the sed command to match as expected. --- qbittorrent/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbittorrent/Dockerfile b/qbittorrent/Dockerfile index c1006251e..d001a8bc6 100644 --- a/qbittorrent/Dockerfile +++ b/qbittorrent/Dockerfile @@ -46,7 +46,7 @@ RUN \ \ # Correct permissions && sed -i 's=/config=/config/qBittorrent || true=g' /etc/cont-init.d/10-adduser \ - && sed -i 's= /config=/config/qBittorrent || true=g' /etc/cont-init.d/30-config \ + && sed -i 's= /config= /config/qBittorrent || true=g' /etc/cont-init.d/30-config \ \ # Set download folder to /share && sed -i 's|/downloads/|/share/qBittorrent/|g' /defaults/qBittorrent.conf \