Bug 1182727 - Part 19: Fix another stupid mistake in build_tar_package()

DONTBUILD
This commit is contained in:
Ehsan Akhgari 2015-10-13 14:20:39 -04:00
parent 3309856eb1
commit 543094c2fa

View File

@ -64,7 +64,9 @@ def updated_env(env):
def build_tar_package(tar, name, base, directory):
name = os.path.realpath(name)
run_in(base, [tar,
"-c -%s -f" % ("J" if ".xz" in name else "j"),
"-c",
"-%s" % ("J" if ".xz" in name else "j"),
"-f",
name, directory])