mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-18 06:50:25 +00:00
9 lines
176 B
Bash
9 lines
176 B
Bash
|
|
#!/bin/sh
|
||
|
|
# deactivate all debug calls
|
||
|
|
set -e
|
||
|
|
set -u
|
||
|
|
|
||
|
|
d=$(dirname $0)
|
||
|
|
base=$(readlink -f $d/..)
|
||
|
|
find "$base" -type f -print0 | xargs -0 sed -i 's/ log.debug(/ #log.debug(/g'
|