So its more readable and diffs of changes are more clear, thus easier to
review.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
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
))