2
0
mirror of https://github.com/xcat2/confluent.git synced 2024-11-22 01:22:00 +00:00

Fix build problem for osdeploy

addons.cpio was erroneously
stepping on itself.
This commit is contained in:
Jarrod Johnson 2020-05-07 09:35:32 -04:00
parent 4f2d4a7709
commit 72d52c56b7

View File

@ -30,7 +30,8 @@ for os in el8 suse15 ubuntu20.04; do
cd ${os}out
cp -a ../opt .
cp -a ../${os}/initramfs/* .
find . | cpio -H newc -o > addons.cpio
find . | cpio -H newc -o > ../addons.cpio
mv ../addons.cpio .
cd ..
done