From d3811c947de1bf719f079eb55ca295ecce3393d0 Mon Sep 17 00:00:00 2001 From: Mikhalkovich Stanislav Date: Wed, 13 Jul 2022 12:11:45 +0300 Subject: [PATCH] fileslist_install.pas new --- fileslist_install.pas | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 fileslist_install.pas diff --git a/fileslist_install.pas b/fileslist_install.pas new file mode 100644 index 000000000..4964cacb3 --- /dev/null +++ b/fileslist_install.pas @@ -0,0 +1,9 @@ +begin + Assign(output,'_GenerateLinuxVersion.bat'); + var a := EnumerateAllFiles('LinuxInstallerPABC'); + var b := a.Select(s -> 'copy bin\'+s[20:]+' Release\PascalABCNETLinux\'+s[20:]);//.OrderBy(s->ExtractFileExt(s)); + b := b.Append(#13#10'cd Release'); + b := b.Append(#13#10'..\Utils\pkzipc\pkzipc.exe -add -dir=current PascalABCNETLinux.zip PascalABCNETLinux\*.*'); + b := b.Append(#13#10'cd ..'); + b.PrintLines; +end. \ No newline at end of file