Compare commits
No commits in common. "11638c5443419a2eeafa5f8338d41cb0f8d54142" and "e57db3a8d7533568445d9df1eec9d4096f9b99f0" have entirely different histories.
11638c5443
...
e57db3a8d7
|
@ -123,8 +123,6 @@ Notes
|
||||||
pip install -e .[llfuse]
|
pip install -e .[llfuse]
|
||||||
pyinstaller --clean --noconfirm scripts/borg.exe.spec
|
pyinstaller --clean --noconfirm scripts/borg.exe.spec
|
||||||
|
|
||||||
Then see `dist/borg.exe`. Confirm the version with `dist/borg.exe --version`.
|
|
||||||
|
|
||||||
*Note:* This uses the deprecated `llfuse` instead of the newer `pyfuse3`.
|
*Note:* This uses the deprecated `llfuse` instead of the newer `pyfuse3`.
|
||||||
`pyfuse3` doesn't work because, at minimum, it pulls in `trio` which
|
`pyfuse3` doesn't work because, at minimum, it pulls in `trio` which
|
||||||
requires `ssl` which is explicitly excluded by
|
requires `ssl` which is explicitly excluded by
|
||||||
|
|
|
@ -219,10 +219,7 @@ class Backup:
|
||||||
for entry in it:
|
for entry in it:
|
||||||
self.scan(path=entry.path, parent_st=st)
|
self.scan(path=entry.path, parent_st=st)
|
||||||
|
|
||||||
except (FileNotFoundError,
|
except OSError as e:
|
||||||
IsADirectoryError,
|
|
||||||
NotADirectoryError,
|
|
||||||
PermissionError) as e:
|
|
||||||
self.log('E', f"can't read {pstr(path)}: {str(e)}")
|
self.log('E', f"can't read {pstr(path)}: {str(e)}")
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user