Skip to content

Commit 02adee5

Browse files
Merge pull request #136 from qualcomm-linux/development
Fix failure if package does not produce -dev variant
2 parents 4e989a4 + 02e3d92 commit 02adee5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/qcom-release-reusable-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
ALL_PKGS=$(grep-dctrl -n -s Package -r '' debian/control | sort -u)
136136
137137
# Collect dev packages (Section: libdevel)
138-
DEV_PKGS=$(grep-dctrl -n -F Section -e libdevel -s Package debian/control | sort -u)
138+
DEV_PKGS=$(grep-dctrl -n -F Section -e libdevel -s Package debian/control | sort -u) || true
139139
140140
# Compute MAIN = ALL - DEV (using comm on sorted lists)
141141
MAIN_PKGS=$(comm -23 <(printf '%s\n' "$ALL_PKGS") <(printf '%s\n' "$DEV_PKGS"))

0 commit comments

Comments
 (0)