CI: fix building multi-arch-test-build
The sed is adding the package name as "PKGNAME/" and does not remove the "/". That is why the buildchain currently fails. Signed-off-by: Nick Hainke <vincent@systemli.org>
This commit is contained in:
parent
d1ab87b7db
commit
b65879895a
1 changed files with 1 additions and 1 deletions
2
.github/workflows/multi-arch-test-build.yml
vendored
2
.github/workflows/multi-arch-test-build.yml
vendored
|
@ -69,7 +69,7 @@ jobs:
|
|||
for ROOT in $PKG_ROOTS; do
|
||||
for CHANGE in $CHANGES; do
|
||||
if [[ "$CHANGE" == "$ROOT"* ]]; then
|
||||
PACKAGES+=$(echo "$ROOT" | sed -e 's@.*/\(.*\)/@\1 @')
|
||||
PACKAGES+=$(echo "$ROOT" | sed -e 's@\(.*\)/@\1 @')
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue