fix(basic-image): append ^* to .drv entries to prevent warnings

instead print a "." without newline to be able to see progress
This commit is contained in:
technofab 2024-10-06 19:19:33 +02:00
parent 28072631e7
commit ec279ae31e

View file

@ -155,7 +155,9 @@
'')
(finalizeScript ''
while read entry; do
[[ "$entry" == *.drv ]] && entry+="^*" || true
nix copy --quiet --to "file://$(pwd)/.nix-cache" $entry || true
echo -n "."
done
'')
];