mirror of https://gitlab.com/basile.b/dexed.git
fix, project pre/post build process CWD ans symstrings
symbols in cwd were not expanded
This commit is contained in:
parent
e9b54be3d9
commit
555c790e1e
|
@ -615,7 +615,9 @@ begin
|
|||
for i:= 0 to j do
|
||||
process.Parameters.Delete(0);
|
||||
if process.CurrentDirectory = '' then
|
||||
process.CurrentDirectory := extractFilePath(process.Executable);
|
||||
process.CurrentDirectory := extractFilePath(process.Executable)
|
||||
else
|
||||
process.CurrentDirectory := symbolExpander.get(process.CurrentDirectory);
|
||||
ensureNoPipeIfWait(process);
|
||||
process.Execute;
|
||||
while process.Running do
|
||||
|
|
Loading…
Reference in New Issue