pmb, test: remove redundant commas (MR 2115)

This commit is contained in:
Newbyte 2021-09-26 17:50:11 +02:00
parent 4675def8e6
commit 2d23849aa3
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB
23 changed files with 42 additions and 42 deletions

View file

@ -40,12 +40,12 @@ def init(args, suffix="native"):
key = key[len(chroot):]
pmb.chroot.root(args, ["cp", key, "/etc/apk/keys/"], suffix)
# Add gzip wrapper, that converts '-9' to '-1'
# Add gzip wrapper that converts '-9' to '-1'
if not os.path.exists(chroot + "/usr/local/bin/gzip"):
with open(chroot + "/tmp/gzip_wrapper.sh", "w") as handle:
content = """
#!/bin/sh
# Simple wrapper, that converts -9 flag for gzip to -1 for
# Simple wrapper that converts -9 flag for gzip to -1 for
# speed improvement with abuild. FIXME: upstream to abuild
# with a flag!
args=""