linkchecker/scripts/nodebug.sh

9 lines
186 B
Bash
Raw Permalink Normal View History

2014-03-27 16:19:52 +00:00
#!/bin/sh
# deactivate all debug calls
set -e
set -u
d=$(dirname $0)
2014-03-27 19:27:30 +00:00
base=$(readlink -f $d/../linkcheck)
2014-03-27 16:19:52 +00:00
find "$base" -type f -print0 | xargs -0 sed -i 's/ log.debug(/ #log.debug(/g'