mirror of
https://github.com/openwrt/routing.git
synced 2025-12-21 21:24:32 +04:00
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:
committed by
Moritz Warning
parent
d1ab87b7db
commit
b65879895a
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
|
||||
|
||||
Reference in New Issue
Block a user