fileslist_install.pas - создание скрипта архива файлов для Линукс-инсталляции
This commit is contained in:
parent
61278df9b1
commit
907709e6bd
|
|
@ -167,7 +167,7 @@ namespace ICSharpCode.TextEditor.Gui.CompletionWindow
|
|||
&& Environment.OSVersion.Platform != PlatformID.MacOSX
|
||||
)
|
||||
{
|
||||
Close();
|
||||
//Close(); // Под Mono начинает показываться окно по скобке
|
||||
}
|
||||
if (Environment.OSVersion.Platform == PlatformID.Unix || Environment.OSVersion.Platform == PlatformID.MacOSX)
|
||||
{
|
||||
|
|
|
|||
7
fileslist_install.pas
Normal file
7
fileslist_install.pas
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
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'powershell Compress-Archive -Force Release\PascalABCNETLinux Release\PascalABCNETLinux.zip');
|
||||
b.PrintLines;
|
||||
end.
|
||||
Loading…
Reference in a new issue