We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ead4884 + 15375fa commit a6a236dCopy full SHA for a6a236d
1 file changed
ContentBuilder/ContentBuilder.py
@@ -149,10 +149,12 @@ def DetermineFullCWD(name: str):
149
cwd = wd_override
150
151
if cwd: # Already set the CWD by override
152
+ w_dir = cwd
153
return
154
- if not cwd:
155
- cwd = Path(getcwd())
+
156
+ cwd = Path(getcwd())
157
158
159
if name.startswith("<") and (endindx := name.find(">")) != -1:
160
name = name[1:endindx]
0 commit comments