Merge pull request 'logs: show logs, not just the .out files' (#147) from earl-warren/end-to-end:wip-logs into main

Reviewed-on: https://code.forgejo.org/forgejo/end-to-end/pulls/147
This commit is contained in:
earl-warren 2024-04-06 09:58:04 +00:00
commit 56110cffcc

View file

@ -296,7 +296,10 @@ function stop() {
function show_logs() { function show_logs() {
( (
cd $DIR cd $DIR
grep '' *.out set +e
grep --text '' *.log
grep --text '' forgejo-work-path/log/*.log
grep --text '' *.out
) )
} }