docs/ci: fix a typo when calling mkdir -p

Should have been included in 8524447554
This commit is contained in:
Matt Sturgeon 2024-11-18 22:30:24 +00:00
parent 8524447554
commit 2017830a2c
No known key found for this signature in database
GPG key ID: 4F91844CED1A8299

View file

@ -51,7 +51,7 @@ jobs:
set -ex set -ex
# 1: branch # 1: branch
# 2: dest-dir (relative to /nixvim/) # 2: install dir (relative to /nixvim/)
build() { build() {
flake="github:${repo}${1:+/$1}" flake="github:${repo}${1:+/$1}"
dir="${2:+/$2}" dir="${2:+/$2}"
@ -63,8 +63,8 @@ jobs:
baseHref = "'"$baseHref"'"; baseHref = "'"$baseHref"'";
}' }'
# Copy the result to the dest-dir # Copy the result to the install dir
mkdir -p "$destDir" mkdir -p "$installDir"
cp -r result/share/doc/* "$installDir" cp -r result/share/doc/* "$installDir"
} }