Skip to content

Commit 90c4347

Browse files
committed
build: fix default package types when target is set to all (used by virtual packages)
Signed-off-by: Reuben Miller <reuben.d.miller@gmail.com>
1 parent db77872 commit 90c4347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/build_scripts/package.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ fi
119119

120120
if [ -z "$PACKAGE_TYPES" ]; then
121121
case "$TARGET" in
122-
*linux*) PACKAGE_TYPES="deb,apk,rpm,tarball" ;;
122+
*linux*|all) PACKAGE_TYPES="deb,apk,rpm,tarball" ;;
123123
*apple*) PACKAGE_TYPES="tarball" ;;
124124
*) PACKAGE_TYPES="tarball" ;;
125125
esac

0 commit comments

Comments
 (0)