Fixed a potential bug affecting ARM architecture

This commit is contained in:
Marco Dalla Tiezza
2024-06-10 21:30:28 +02:00
parent 39056d1d91
commit 19acf11b1a
2 changed files with 4 additions and 1 deletions

3
.gitignore vendored
View File

@@ -6,3 +6,6 @@ data/
*.qtds
artemis_rc.py
site
Generated
app.build
app.dist

View File

@@ -21,7 +21,7 @@ def _app_dir():
elif is_linux():
app_dir_path = Path.home() / '.local' / 'share' / Constants.ORGANIZATION_NAME / Constants.APPLICATION_NAME
else:
app_dir_path = BASE_DIR
app_dir_path = BASE_DIR.resolve()
if not app_dir_path.exists():
app_dir_path.mkdir(parents=True)