fix silent esception when storing the editor metadata file

This commit is contained in:
Basile Burg 2020-01-25 04:31:29 +01:00
parent 3c67dba92a
commit e0352e041d
1 changed files with 4 additions and 1 deletions

View File

@ -1007,7 +1007,10 @@ begin
t := n[1..p-1];
c := n[p + 3 .. n.length];
f := fBasePath + DirectorySeparator + '.dub' + DirectorySeparator + '.editor_meta_data.ini';
f := fBasePath + DirectorySeparator + '.dub';
if not f.dirExists then
exit;
f := f + DirectorySeparator + '.editor_meta_data.ini';
with TStringList.Create do
try
values['last_dexed_buildType'] := t;