fileslist_install.pas new
This commit is contained in:
parent
6073807aea
commit
d3811c947d
9
fileslist_install.pas
Normal file
9
fileslist_install.pas
Normal file
|
|
@ -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.
|
||||
Loading…
Reference in a new issue