mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
Support NetBSD
This commit is contained in:
parent
76cfc43794
commit
9da7bee57c
1 changed files with 2 additions and 1 deletions
|
@ -87,7 +87,8 @@ def appdata_dir():
|
|||
elif platform.system() == "Linux":
|
||||
return os.path.join(sys.prefix, "share", "electrum")
|
||||
elif (platform.system() == "Darwin" or
|
||||
platform.system() == "DragonFly"):
|
||||
platform.system() == "DragonFly" or
|
||||
platform.system() == "NetBSD"):
|
||||
return "/Library/Application Support/Electrum"
|
||||
else:
|
||||
raise Exception("Unknown system")
|
||||
|
|
Loading…
Add table
Reference in a new issue