Remove "sh -c" indirection to preserve proper umask in tar command.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
name = "signpack",
description = "Packing files to sign",
workdir = "build/sdk",
- command = ["sh", "-c", "find bin/packages/%s/ -mindepth 2 -maxdepth 2 -type f -name Packages -print0 | xargs -0 tar -czf sign.tar.gz" %(arch[0])],
+ command = "find bin/packages/%s/ -mindepth 2 -maxdepth 2 -type f -name Packages -print0 | xargs -0 tar -czf sign.tar.gz" %(arch[0]),
haltOnFailure = True
))