[buildbot] phase2: signpack: code format

LEDE Commits lede-commits at lists.infradead.org
Sat Oct 12 02:18:35 PDT 2024


ynezz pushed a commit to buildbot.git, branch main:
https://git.openwrt.org/34033a7c50fa3e6606a3ee728f8217350e4a6c22

commit 34033a7c50fa3e6606a3ee728f8217350e4a6c22
Author: Petr Štetiar <ynezz at true.cz>
AuthorDate: Sat Oct 12 07:43:04 2024 +0000

    phase2: signpack: code format
    
    So its more readable and diffs of changes are more clear, thus easier to
    review.
    
    Signed-off-by: Petr Štetiar <ynezz at true.cz>
---
 phase2/master.cfg | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/phase2/master.cfg b/phase2/master.cfg
index 940831b..6b7939b 100644
--- a/phase2/master.cfg
+++ b/phase2/master.cfg
@@ -591,7 +591,10 @@ for arch in arches:
 			name = "signpack",
 			description = "Packing files to sign",
 			workdir = "build/sdk",
-			command = "find bin/packages/%s/ -mindepth 2 -maxdepth 2 -type f -name Packages -print0 -or -name packages.adb -print0 | xargs -0 tar -czf sign.tar.gz" %(arch[0]),
+			command = "find bin/packages/%s/ -mindepth 2 -maxdepth 2 -type f " %(arch[0])
+			+ "-name Packages -print0 -or "
+			+ "-name packages.adb -print0 | "
+			+ "xargs -0 tar -czf sign.tar.gz",
 			haltOnFailure = True
 		))
 




More information about the lede-commits mailing list