From 1facdeea59d11b30d59c5cf27a7becba02945fdc Mon Sep 17 00:00:00 2001 From: flintforge Date: Mon, 31 Mar 2025 13:47:13 +0200 Subject: [PATCH] Update Dockerfile.debian-artifact-build dpkg installation was failing because 'rustup toolchain list' returning '1.72.0-x86_64-unknown-linux-gnu (active, default)' was unmatched --- .github/docker/Dockerfile.debian-artifact-build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/docker/Dockerfile.debian-artifact-build b/.github/docker/Dockerfile.debian-artifact-build index 7a5c6cb2..8d46811b 100644 --- a/.github/docker/Dockerfile.debian-artifact-build +++ b/.github/docker/Dockerfile.debian-artifact-build @@ -151,7 +151,7 @@ if ! runuser -l postgres -c 'rustup component list | grep -q "^rustc-dev-$(uname exit 1 fi -if ! runuser -l postgres -c 'rustup toolchain list | grep -q "^$TOOLCHAIN_VER-$(uname -m)\b.*(default)$"'; then +if ! runuser -l postgres -c 'rustup toolchain list | grep -q "^$TOOLCHAIN_VER-$(uname -m)\b.*default)$"'; then echo "[!] The 'postgres' user does not have the default toolchain set to $TOOLCHAIN_VER. Please see package installation instructions on how to do this."; exit 1 fi