From 6e6702e2af02e5c150845ae61db7cc56aa0eb862 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C2=B7=F0=90=91=91=F0=90=91=B4=F0=90=91=95=F0=90=91=91?= =?UTF-8?q?=F0=90=91=A9=F0=90=91=A4?= Date: Fri, 20 Mar 2026 21:08:09 +0700 Subject: [PATCH] =?UTF-8?q?fetchdarcs:=20don=E2=80=99t=20use=20the=20inacc?= =?UTF-8?q?essible=20cache=20in=20the=20sandox?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/build-support/fetchdarcs/builder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/fetchdarcs/builder.sh b/pkgs/build-support/fetchdarcs/builder.sh index 85ac1eca108a..4fc993be54ff 100644 --- a/pkgs/build-support/fetchdarcs/builder.sh +++ b/pkgs/build-support/fetchdarcs/builder.sh @@ -20,7 +20,7 @@ set -o noglob success= for repository in $repositories; do echo "Trying to clone $repository $tagtext into $out …" - if darcs clone --lazy $tagflags "$repository" "$out"; then + if darcs clone --lazy --no-cache $tagflags "$repository" "$out"; then # remove metadata, because it can change rm -rf "$out/_darcs" success=1