summaryrefslogtreecommitdiff
path: root/tools/releasetools/common.py
diff options
context:
space:
mode:
author Kelvin Zhang <zhangkelvin@google.com> 2020-08-11 01:35:23 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2020-08-11 01:35:23 +0000
commit2f6571884dba75e3074f4784dc397ff57fb1874f (patch)
tree2da49db6287b56cc4d3f54df3562422bf6b9329b /tools/releasetools/common.py
parent4f353b78a7965a493a372223629838a12e37d744 (diff)
parentcff4d7606dd195d8c2726867024b310a23a4ac8b (diff)
Merge "Move non-AB OTA generation code to a separate file"
Diffstat (limited to 'tools/releasetools/common.py')
-rw-r--r--tools/releasetools/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/releasetools/common.py b/tools/releasetools/common.py
index 1846a67de1..89900d3eea 100644
--- a/tools/releasetools/common.py
+++ b/tools/releasetools/common.py
@@ -1227,7 +1227,7 @@ def _MakeRamdisk(sourcedir, fs_config_file=None, lz4_ramdisks=False):
cmd = ["mkbootfs", os.path.join(sourcedir, "RAMDISK")]
p1 = Run(cmd, stdout=subprocess.PIPE)
if lz4_ramdisks:
- p2 = Run(["lz4", "-l", "-12" , "--favor-decSpeed"], stdin=p1.stdout,
+ p2 = Run(["lz4", "-l", "-12", "--favor-decSpeed"], stdin=p1.stdout,
stdout=ramdisk_img.file.fileno())
else:
p2 = Run(["minigzip"], stdin=p1.stdout, stdout=ramdisk_img.file.fileno())