From b65879895a0acb2a47b2d8c87afde6236ea0157c Mon Sep 17 00:00:00 2001 From: Nick Hainke Date: Wed, 2 Jun 2021 23:47:48 +0200 Subject: [PATCH] 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 --- .github/workflows/multi-arch-test-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/multi-arch-test-build.yml b/.github/workflows/multi-arch-test-build.yml index a10be99..f254a8d 100644 --- a/.github/workflows/multi-arch-test-build.yml +++ b/.github/workflows/multi-arch-test-build.yml @@ -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