diff --git a/adb-sync b/adb-sync index 2c68707..53c37c1 100755 --- a/adb-sync +++ b/adb-sync @@ -324,7 +324,7 @@ def BuildFileList(fs, path, prefix=b''): continue for t in BuildFileList(fs, path + b'/' + n, prefix + b'/' + n): yield t - elif stat.S_ISREG(statresult.st_mode): + elif stat.S_ISREG(statresult.st_mode) or stat.S_ISLNK(statresult.st_mode): yield prefix, statresult else: _print(b'Note: unsupported file: %s', path)