From d0ec5886d5617babcc03bfe9bf64a93b02cdc34f Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 8 Jun 2015 02:41:03 +0200 Subject: [PATCH] dont consider DUB as a minimal requirement to launch Coedit building with DUB currently only a trick briefly explained in the wiki. --- src/ce_main.pas | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ce_main.pas b/src/ce_main.pas index 9df6f159..f8fc6098 100644 --- a/src/ce_main.pas +++ b/src/ce_main.pas @@ -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;