From e30a5f4d91c8ebb57d355598d7f7059463ab5497 Mon Sep 17 00:00:00 2001
From: Pierre-Antoine Rouby <pierre-antoine.rouby@inrae.fr>
Date: Tue, 4 Jul 2023 16:49:23 +0200
Subject: [PATCH] Windows: Fix windows version (again...)

---
 packages/wine.sh | 2 +-
 src/config.py    | 6 +++++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/packages/wine.sh b/packages/wine.sh
index 0194a92a..7febf68e 100755
--- a/packages/wine.sh
+++ b/packages/wine.sh
@@ -30,7 +30,7 @@ then
         win10
 
     echo " *** PYTHON INSTALL"
-    if [ ! -f $WINEPREFIX/drive_c/Program Files/Python38/python.exe ];
+    if [ ! -f "$WINEPREFIX/drive_c/Program Files/Python38/python.exe" ];
     then
         #DISPLAY=:42.0 wine cmd /c python-3.8.10-amd64.exe /quiet PrependPath=1
         wine cmd /c python-3.8.10-amd64.exe PrependPath=1
diff --git a/src/config.py b/src/config.py
index 66d91396..24ebebe9 100644
--- a/src/config.py
+++ b/src/config.py
@@ -19,6 +19,8 @@ class Config(SQL):
         self.filename = Config.filename()
         self.set_default_value()
 
+        print(self.filename)
+
         super(Config, self).__init__(filename = self.filename)
 
     def _create(self):
@@ -239,7 +241,9 @@ class Config(SQL):
         if os.name == 'posix':
             file = os.path.expanduser('~') + config_dir + config_file
         else:
-            file = os.path.expanduser('~') + config_file
+            ndir = os.path.expanduser('~') + config_dir.replace("/", "\\")
+            os.makedirs(ndir, exist_ok = True)
+            file = ndir + config_file
 
         return file
 
-- 
GitLab