mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
docs/ci: fix a typo when calling mkdir -p
Should have been included in 8524447554
This commit is contained in:
parent
8524447554
commit
2017830a2c
1 changed files with 3 additions and 3 deletions
6
.github/workflows/build_documentation.yml
vendored
6
.github/workflows/build_documentation.yml
vendored
|
@ -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"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue