workflow: use sed to stop spam
This commit is contained in:
parent
888fb86155
commit
015b6baa8d
2 changed files with 3 additions and 3 deletions
|
@ -78,7 +78,7 @@ jobs:
|
|||
derivations=()
|
||||
while IFS=$'\n' read derivation; do
|
||||
derivations+=("$derivation")
|
||||
done < <(nix path-info --derivation "$package")
|
||||
done < <(nix path-info --derivation "$package" | sed 's/\.drv$/.drv^*/')
|
||||
|
||||
for derivation in "${derivations[@]}"; do
|
||||
nix copy -j8 \
|
||||
|
@ -155,7 +155,7 @@ jobs:
|
|||
derivations=()
|
||||
while IFS=$'\n' read derivation; do
|
||||
derivations+=("$derivation")
|
||||
done < <(nix path-info --derivation "$package")
|
||||
done < <(nix path-info --derivation "$package" | sed 's/\.drv$/.drv^*/')
|
||||
|
||||
for derivation in "${derivations[@]}"; do
|
||||
nix copy -j8 \
|
||||
|
|
2
.github/workflows/build-packages.yml
vendored
2
.github/workflows/build-packages.yml
vendored
|
@ -67,7 +67,7 @@ jobs:
|
|||
derivations=()
|
||||
while IFS=$'\n' read derivation; do
|
||||
derivations+=("$derivation")
|
||||
done < <(nix path-info --derivation "${{ matrix.package }}")
|
||||
done < <(nix path-info --derivation "${{ matrix.package }}" | sed 's/\.drv$/.drv^*/')
|
||||
|
||||
for derivation in "${derivations[@]}"; do
|
||||
nix copy -j8 \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue