Fix directory not opening

This commit is contained in:
2024-02-29 17:24:13 +01:00
parent 6a95da11c0
commit 1f2d363e91
2 changed files with 13 additions and 1 deletions

View File

@@ -193,6 +193,6 @@ class GenerationContext:
self.progress(1, "Done!")
if os.name == 'nt':
os.system(f"start {self.dir}")
os.system(f"start {os.path.abspath(self.dir)}")
else:
os.system(f"open {self.dir}")