From ce2de77a9e4c9599d47c991ac5422ded09c7b218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?n=CE=B9c=D0=BDola=D1=95=20w=CE=B9lde?= Date: Wed, 22 Jun 2022 23:53:31 +0000 Subject: [PATCH] Remove extra forward slash MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: nιcнolaѕ wιlde --- scripts/linkcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/linkcheck.sh b/scripts/linkcheck.sh index bef7131f3..5521a0804 100755 --- a/scripts/linkcheck.sh +++ b/scripts/linkcheck.sh @@ -3,5 +3,5 @@ set -e set -o pipefail readonly DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )/../" >/dev/null 2>&1 && pwd ) for f in $(find "${DIR}" -not -path '*.github*' -not -path '*cook*' -name \*.md); do - docker run --rm -v /:/tmp:ro -i -w /tmp ghcr.io/tcort/markdown-link-check:stable "/tmp/${f}" -c "/tmp${DIR}/mlc_config.json" || exit 1 + docker run --rm -v /:/tmp:ro -i -w /tmp ghcr.io/tcort/markdown-link-check:stable "/tmp${f}" -c "/tmp${DIR}/mlc_config.json" || exit 1 done