fix: i do not know how to do bash ok?
Some checks failed
Some checks failed
fix the quoting for the array iteration Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
d6c976f8a1
commit
9f9ade29f4
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ extraPkgs // {
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
${(old.postInstall or "")}
|
${(old.postInstall or "")}
|
||||||
non_necessary_binaries=("tc" "rdma" "dcb" "tipc" "vdpa")
|
non_necessary_binaries=("tc" "rdma" "dcb" "tipc" "vdpa")
|
||||||
for needless_binary in "$non_necessary_binaries[@]"; do
|
for needless_binary in "''${non_necessary_binaries[@]}"; do
|
||||||
echo "Removing unnecessary binary $out/$needless_binary"
|
echo "Removing unnecessary binary $out/$needless_binary"
|
||||||
rm "$out/$needless_binary"
|
rm "$out/$needless_binary"
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue