linkchecker/scripts/update_iana_uri_schemes.sh
Bastian Kleineidam a08bb70e3c Code cleanup
2014-07-13 21:51:41 +02:00

12 lines
292 B
Bash
Executable file

#!/bin/bash
# Update the list of unknown and therefore ignored URL schemes.
set -o nounset
set -o errexit
set -o pipefail
#set -o xtrace
target=linkcheck/checker/unknownurl.py
python scripts/removeafter.py "$target" "# DO NOT REMOVE"
python scripts/update_iana_uri_schemes.py >> "$target"