Commit 6e6702e2 authored by toastal's avatar toastal
Browse files

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

parent be1c8f95
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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