Skip to content

Commit a2c1ce3

Browse files
committed
missleading comment
Help text "include" means to include cache partition as an extra, non-default partition into the backup. Option "--no-cache" implies the contrary.
1 parent 42c91d1 commit a2c1ce3

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
@@ -38,7 +38,7 @@
3838
g.add_argument('-M', '--media', action='store_true', default=False, help="Include /data/media* in TWRP backup")
3939
g.add_argument('-D', '--data-cache', action='store_true', default=False, help="Include /data/*-cache in TWRP backup")
4040
g.add_argument('-R', '--recovery', action='store_true', default=False, help="Include recovery partition in backup")
41-
g.add_argument('-C', '--no-cache', dest='cache', action='store_true', default=False, help="Include /cache partition in backup")
41+
g.add_argument('-C', '--cache', dest='cache', action='store_true', default=False, help="Include /cache partition in backup")
4242
g.add_argument('-U', '--no-userdata', dest='userdata', action='store_false', default=True, help="Omit /data partition from backup")
4343
g.add_argument('-S', '--no-system', dest='system', action='store_false', default=True, help="Omit /system partition from backup")
4444
g.add_argument('-B', '--no-boot', dest='boot', action='store_false', default=True, help="Omit boot partition from backup")

0 commit comments

Comments
 (0)