mirror of
https://github.com/onionshare/onionshare.git
synced 2025-05-13 20:02:11 -04:00
Merge branch 'develop' of https://github.com/ageis/onionshare into ageis-develop
This commit is contained in:
commit
66b824ccec
1 changed files with 7 additions and 4 deletions
|
@ -130,15 +130,18 @@ class Common(object):
|
|||
if self.platform == 'Windows':
|
||||
try:
|
||||
appdata = os.environ['APPDATA']
|
||||
return '{}\\OnionShare'.format(appdata)
|
||||
onionshare_data_dir = '{}\\OnionShare'.format(appdata)
|
||||
except:
|
||||
# If for some reason we don't have the 'APPDATA' environment variable
|
||||
# (like running tests in Linux while pretending to be in Windows)
|
||||
return os.path.expanduser('~/.config/onionshare')
|
||||
onionshare_data_dir = '~/.config/onionshare'
|
||||
elif self.platform == 'Darwin':
|
||||
return os.path.expanduser('~/Library/Application Support/OnionShare')
|
||||
onionshare_data_dir = '~/Library/Application Support/OnionShare'
|
||||
else:
|
||||
return os.path.expanduser('~/.config/onionshare')
|
||||
onionshare_data_dir = '~/.config/onionshare'
|
||||
|
||||
os.makedirs(onionshare_data_dir, 0o700, True)
|
||||
return onionshare_data_dir
|
||||
|
||||
def build_slug(self):
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue