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