From 4a6ed59cb6b55718f60084225927c422aaf639bd Mon Sep 17 00:00:00 2001 From: Earl Warren Date: Sat, 6 Apr 2024 09:33:34 +0200 Subject: [PATCH] logs: show logs, not just the .out files --- lib/lib.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lib/lib.sh b/lib/lib.sh index 86251fc..0eaf5ed 100644 --- a/lib/lib.sh +++ b/lib/lib.sh @@ -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 ) }