Skip to content

Commit e8a85f4

Browse files
[Optimisation]: remove verbose option from tar
more appending = more confusion in logs
1 parent 593b387 commit e8a85f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

udroid/src/proot-utils/proot-utils.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ p_extract() {
4141
if ! $NO_PROG; then
4242
pv $file | proot \
4343
--link2symlink \
44-
tar --no-same-owner -xvz -C "$path" &> $LOG_FILE
44+
tar --no-same-owner -xz -C "$path" &> $LOG_FILE
4545
else
4646
proot \
4747
--link2symlink \
48-
tar --no-same-owner -xvz -C "$path" < $file
48+
tar --no-same-owner -xz -C "$path" < $file
4949
fi
5050
}
5151

0 commit comments

Comments
 (0)