Skip to content

Commit 3539d5f

Browse files
committed
.tar.gz makes no sense for Nandroid output filenames; change to .emmc.gz
1 parent 016000f commit 3539d5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tetherback/tetherback.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ def plan_backup(args):
156156
# Build table of partitions requested for backup
157157
if args.nandroid:
158158
rp = args.extra + [x for x in ('boot','recovery','system','userdata','cache') if getattr(args, x)]
159-
plan = odict((p,BackupPlan('%s.tar.gz'%p, None)) for p in rp)
159+
plan = odict((p,BackupPlan('%s.emmc.gz'%p, None)) for p in rp)
160160
else:
161161
rp = args.extra + [x for x in ('boot','recovery') if getattr(args, x)]
162162
plan = odict((p,BackupPlan('%s.emmc.win'%p, None)) for p in rp)

0 commit comments

Comments
 (0)