Fix CI workflow syntax error
Some checks failed
Build ostree packages from sid to trixie / build (push) Failing after 4s
Some checks failed
Build ostree packages from sid to trixie / build (push) Failing after 4s
- Remove parentheses from grep -E pattern that was causing shell syntax error - The pattern now uses simple alternation without grouping parentheses
This commit is contained in:
parent
8d8b39e100
commit
eac5d4783d
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@ jobs:
|
|||
|
||||
echo 'Running dpkg-buildpackage...'
|
||||
echo 'Build dependencies check:'
|
||||
dpkg -l | grep -E "(libglib2.0-dev|libfuse3-dev|libsoup2.4-dev|libarchive-dev|libcurl4-openssl-dev|libsystemd-dev)" || echo "Some dependencies missing"
|
||||
dpkg -l | grep -E "libglib2.0-dev|libfuse3-dev|libsoup2.4-dev|libarchive-dev|libcurl4-openssl-dev|libsystemd-dev" || echo "Some dependencies missing"
|
||||
|
||||
if dpkg-buildpackage -us -uc -b; then
|
||||
echo 'Build successful!'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue