releasecreator: copy folders

This commit is contained in:
mattias 2024-01-10 12:12:23 +01:00
parent afe1fa2bdd
commit 99b8a2e97d

View File

@ -458,9 +458,10 @@ begin
CopyFolder('utils');
// copy all tools except releasecreator
if FindFirst(SourceDir+'tools'+AllFilesMask,faAnyFile,Info)=0 then begin
if FindFirst(SourceDir+'tools'+PathDelim+AllFilesMask,faAnyFile,Info)=0 then begin
repeat
if (Info.Name='') or (Info.Name='.') or (Info.Name='..') then continue;
if (Info.Name='releasecreator') then continue;
if (Info.Attr and faDirectory)>0 then begin
CopyFolder('tools'+PathDelim+Info.Name);
end