logs: show logs, not just the .out files abc #147

Merged
earl-warren merged 4 commits from wip-logs into main 2024-04-27 08:53:37 +00:00
Showing only changes of commit 4a6ed59cb6 - Show all commits

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
)
}