dont consider DUB as a minimal requirement to launch Coedit

building with DUB currently only a trick
briefly explained in the wiki.
This commit is contained in:
Basile Burg 2015-06-08 02:41:03 +02:00
parent 3ef1d25c43
commit d0ec5886d5
1 changed files with 3 additions and 3 deletions

View File

@ -422,12 +422,12 @@ end;
procedure TCEMainForm.checkCompilo;
const
msg = 'Coedit recquires DMD or DUB to be setup on this system' + LineEnding +
msg = 'Coedit requires DMD to be setup on this system' + LineEnding +
'If DMD is setup please add it to the system PATH variable before using Coedit';
begin
if exeInSysPath('dmd') or exeInSysPath('dub') then
if exeInSysPath('dmd') then
exit;
ce_common.dlgOkError(msg);
dlgOkError(msg);
close;
end;