fix, project pre/post build process CWD ans symstrings

symbols in cwd were not expanded
This commit is contained in:
Basile Burg 2015-08-25 20:37:53 +02:00
parent e9b54be3d9
commit 555c790e1e
1 changed files with 3 additions and 1 deletions

View File

@ -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