From c0bcd3852c3fd341a28a57432630f8f1fc60c52f Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 21 Sep 2015 01:43:56 +0200 Subject: [PATCH] fix, semi colon error lead to always updgrade --- src/ce_libmaneditor.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_libmaneditor.pas b/src/ce_libmaneditor.pas index 8706d54a..55f0b08c 100644 --- a/src/ce_libmaneditor.pas +++ b/src/ce_libmaneditor.pas @@ -162,7 +162,7 @@ begin pth := GetEnvironmentVariable('HOME') + '/.dub/packages/' + nme + '-master'; {$ENDIF} itf := getMessageDisplay; - if DirectoryExists(pth) then; + if DirectoryExists(pth) then begin upd := true; itf.message('information, the dub package is already fetched and will be upgraded', nil, amcApp, amkInf);