Browse Source

Always expand user home path when loading project from CLI

tags/v1.9.12
falkTX 6 years ago
parent
commit
a34fd64f43
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      source/frontend/carla_shared.py

+ 1
- 0
source/frontend/carla_shared.py View File

@@ -616,6 +616,7 @@ def getInitialProjectFile(app, skipExistCheck = False):
continue
if arg in ("-n", "--n", "-no-gui", "--no-gui", "-nogui", "--nogui"):
continue
arg = os.path.expanduser(arg)
if skipExistCheck or os.path.exists(arg):
return arg



Loading…
Cancel
Save