Skip to content
This repository was archived by the owner on Jul 21, 2023. It is now read-only.

Commit ed743b3

Browse files
committed
build: remove Kubevirt content from dist package
Do not include the Kubevirt content as it makes the package unnecessarily large. The releases from master branch are the proper source of the source files if anyone wishes to use the dist package (and not to use git repo). As for the kubevirt v2v container the source is in MangeIQ/manageiq-v2v-conversion_host-build repository. Signed-off-by: Tomáš Golembiovský <[email protected]>
1 parent 9af339a commit ed743b3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,8 @@ do_dist() {
4646
-e "s|@PACKAGE_NAME@|$PACKAGE_NAME|g" \
4747
< "$PACKAGE_NAME.spec.in" > "$PACKAGE_NAME.spec"
4848

49-
git ls-files | tar --files-from /proc/self/fd/0 -czf "$TARBALL" "$PACKAGE_NAME.spec"
49+
git ls-files | grep -v '^kubevirt-conversion\|^kubevirt-vmware' | \
50+
tar --files-from /proc/self/fd/0 -czf "$TARBALL" "$PACKAGE_NAME.spec"
5051
echo "tar archive '$TARBALL' created."
5152
}
5253

0 commit comments

Comments
 (0)