Differences From Artifact [befb5316ad]:
- File src/buildoutputwindow.pas — part of check-in [a0a5ea5104] at 2024-01-10 11:09:46 on branch trunk — [Bugfix] BuildDocument did not return success on success. [Improved] BuildDocument uses a simpler execution approach now. (user: Cthulhux, size: 1432) [annotate] [blame] [check-ins using]
To Artifact [b2dc02ad8c]:
- File src/buildoutputwindow.pas — part of check-in [b79a475132] at 2024-01-10 11:12:13 on branch trunk — Brought back the 'no problem' log. (user: Cthulhux, size: 1500) [annotate] [blame] [check-ins using]
︙ | |||
49 50 51 52 53 54 55 56 57 58 59 60 61 62 | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | + + | ret: Boolean; begin {$IFDEF WINDOWS} ret := RunCommand('cmd', ['/c', CommandLine], str, [], swoHIDE); {$ELSE} ret := RunCommand('sh', ['-c', CommandLine], str, [], swoHIDE); {$ENDIF} if Length(str) = 0 then str := 'No problems have occurred. :-)'; if LogFile <> '' then begin AssignFile(lh, LogFile); try ReWrite(lh); Write(lh, str); |
︙ |