taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 5374ff73d5f54285256e748ee07389d514fa6dac
parent 7dc0b0efc53b02cafa16e1a92dbd5f45ea923904
Author: Devan Carpenter <devan@taler.net>
Date:   Mon, 19 Feb 2024 06:09:30 -0500

linkchecker: grep for errors is case senstive

Diffstat:
Mbuildbot/linkchecker.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildbot/linkchecker.sh b/buildbot/linkchecker.sh @@ -34,7 +34,7 @@ for url in "https://www.taler.net/" "https://docs.taler.net/" "https://taler-sys done # Search the log for the phrase "broken link" as this is what wget will report -if grep -iRl 'Error' $logfile +if grep -Rl 'Error' $logfile then echo "Found broken links. Build should fail (exit 1), triggering e-mail notification." exit 1