mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-12 07:08:47 +00:00
Adding sys.path to %PATH% to find libcrypto on windows
This commit is contained in:
parent
7203a8bbb9
commit
b00559a5b9
1 changed files with 13 additions and 0 deletions
|
@ -1,2 +1,15 @@
|
||||||
|
import sys
|
||||||
|
import os
|
||||||
|
|
||||||
|
# On windows loading the bundled libcrypto dll fails if the folder
|
||||||
|
# containing the dll is not in the search path. The dll is shipped
|
||||||
|
# with python in the "DLLs" folder, so let's add this folder
|
||||||
|
# to the path. The folder is always in sys.path, get it from there.
|
||||||
|
if sys.platform.startswith('win32'):
|
||||||
|
# Keep it an iterable to support multiple folder which contain "DLLs".
|
||||||
|
dll_path = (p for p in sys.path if 'DLLs' in os.path.normpath(p).split(os.path.sep))
|
||||||
|
os.environ['PATH'] = os.pathsep.join(dll_path) + os.pathsep + os.environ['PATH']
|
||||||
|
|
||||||
|
|
||||||
from borg.archiver import main
|
from borg.archiver import main
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Add table
Reference in a new issue