Merge pull request #1218 from a-wai/fix-unpackfs

Fix error in unpackfs
This commit is contained in:
Adriaan de Groot 2019-08-13 17:01:40 +02:00 committed by GitHub
commit 54767812fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -103,6 +103,7 @@ def file_copy(source, dest, progress_cb):
if not source.endswith("/"):
source += "/"
num_files_total_local = 0
num_files_copied = 0 # Gets updated through rsync output
args = ['rsync', '-aHAXr']