We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a65310 commit 1c7ef80Copy full SHA for 1c7ef80
.mise/tasks/lint/links.sh
@@ -5,4 +5,9 @@ set -e
5
6
#USAGE arg "<file>" var=#true help="files to check" default="."
7
8
-lychee --verbose --config .github/config/lychee.toml "$usage_file"
+for f in $usage_file; do
9
+ echo "Checking links in file: $f"
10
+done
11
+
12
+# shellcheck disable=SC2086
13
+lychee --verbose --config .github/config/lychee.toml $usage_file
.mise/tasks/lint/local-links.sh
-lychee --verbose --scheme file --include-fragments "$usage_file"
+lychee --verbose --scheme file --include-fragments $usage_file
0 commit comments