mirror of https://gitlab.com/basile.b/dexed.git
removed invalid warning messages when pre/post build process name is empty
This commit is contained in:
parent
98253a3d30
commit
8ff9aedc3d
|
@ -1212,6 +1212,7 @@ begin
|
||||||
with fProject.currentConfiguration do
|
with fProject.currentConfiguration do
|
||||||
begin
|
begin
|
||||||
if preBuildProcess.executable <> '' then
|
if preBuildProcess.executable <> '' then
|
||||||
|
if ExeSearch(preBuildProcess.executable, '') <> '' then
|
||||||
begin
|
begin
|
||||||
ppproc := TProcess.Create(nil);
|
ppproc := TProcess.Create(nil);
|
||||||
try
|
try
|
||||||
|
@ -1266,6 +1267,7 @@ begin
|
||||||
with fProject.currentConfiguration do
|
with fProject.currentConfiguration do
|
||||||
begin
|
begin
|
||||||
if postBuildProcess.executable <> '' then
|
if postBuildProcess.executable <> '' then
|
||||||
|
if ExeSearch(postBuildProcess.executable, '') <> '' then
|
||||||
begin
|
begin
|
||||||
ppproc := TProcess.Create(nil);
|
ppproc := TProcess.Create(nil);
|
||||||
try
|
try
|
||||||
|
|
Loading…
Reference in New Issue