mirror of https://gitlab.com/basile.b/dexed.git
fix projects output cant be run anymore when empty symstring
This commit is contained in:
parent
30ddf44dfb
commit
116e8f5af0
|
@ -1371,10 +1371,10 @@ begin
|
||||||
repeat
|
repeat
|
||||||
prm := ExtractDelimited(i, runArgs, [' ']);
|
prm := ExtractDelimited(i, runArgs, [' ']);
|
||||||
prm := expandSymbolicString(prm);
|
prm := expandSymbolicString(prm);
|
||||||
if prm <> '' then
|
if prm <> '``' then
|
||||||
runProc.Parameters.AddText(prm);
|
runProc.Parameters.AddText(prm);
|
||||||
Inc(i);
|
Inc(i);
|
||||||
until prm = '';
|
until prm = '``';
|
||||||
procname := aProject.outputFilename;
|
procname := aProject.outputFilename;
|
||||||
|
|
||||||
if not fileExists(procname) then
|
if not fileExists(procname) then
|
||||||
|
|
Loading…
Reference in New Issue