mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-23 07:34:44 +00:00
12 lines
292 B
Bash
Executable file
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"
|