mirror of
https://gitlab.com/TECHNOFAB/nix-gitlab-ci.git
synced 2025-12-12 10:10:06 +01:00
Merge branch 'fix/nix-copy-verbosity' into 'main'
fix(basic-image): append ^* to .drv entries to prevent warnings Closes #5 See merge request TECHNOFAB/nix-gitlab-ci!5
This commit is contained in:
commit
d04325807c
1 changed files with 2 additions and 0 deletions
|
|
@ -155,7 +155,9 @@
|
||||||
'')
|
'')
|
||||||
(finalizeScript ''
|
(finalizeScript ''
|
||||||
while read entry; do
|
while read entry; do
|
||||||
|
[[ "$entry" == *.drv ]] && entry+="^*" || true
|
||||||
nix copy --quiet --to "file://$(pwd)/.nix-cache" $entry || true
|
nix copy --quiet --to "file://$(pwd)/.nix-cache" $entry || true
|
||||||
|
echo -n "."
|
||||||
done
|
done
|
||||||
'')
|
'')
|
||||||
];
|
];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue