logs: show logs, not just the .out files

This commit is contained in:
Earl Warren 2024-04-06 09:33:34 +02:00
parent 4f34b12bb2
commit 4a6ed59cb6
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

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