fetchdarcs: don’t use the inaccessible cache in the sandox

This commit is contained in:
·𐑑𐑴𐑕𐑑𐑩𐑤
2026-03-20 21:08:09 +07:00
parent be1c8f9551
commit 6e6702e2af

View File

@@ -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