Fixed a potential bug affecting ARM architecture
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -6,3 +6,6 @@ data/
|
|||||||
*.qtds
|
*.qtds
|
||||||
artemis_rc.py
|
artemis_rc.py
|
||||||
site
|
site
|
||||||
|
Generated
|
||||||
|
app.build
|
||||||
|
app.dist
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ def _app_dir():
|
|||||||
elif is_linux():
|
elif is_linux():
|
||||||
app_dir_path = Path.home() / '.local' / 'share' / Constants.ORGANIZATION_NAME / Constants.APPLICATION_NAME
|
app_dir_path = Path.home() / '.local' / 'share' / Constants.ORGANIZATION_NAME / Constants.APPLICATION_NAME
|
||||||
else:
|
else:
|
||||||
app_dir_path = BASE_DIR
|
app_dir_path = BASE_DIR.resolve()
|
||||||
|
|
||||||
if not app_dir_path.exists():
|
if not app_dir_path.exists():
|
||||||
app_dir_path.mkdir(parents=True)
|
app_dir_path.mkdir(parents=True)
|
||||||
|
|||||||
Reference in New Issue
Block a user