Skip to content

Commit

Permalink
docs/ci: fix a typo when calling mkdir -p
Browse files Browse the repository at this point in the history
Should have been included in 8524447
  • Loading branch information
MattSturgeon committed Nov 18, 2024
1 parent 8524447 commit 2017830
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
set -ex
# 1: branch
# 2: dest-dir (relative to /nixvim/)
# 2: install dir (relative to /nixvim/)
build() {
flake="github:${repo}${1:+/$1}"
dir="${2:+/$2}"
Expand All @@ -63,8 +63,8 @@ jobs:
baseHref = "'"$baseHref"'";
}'
# Copy the result to the dest-dir
mkdir -p "$destDir"
# Copy the result to the install dir
mkdir -p "$installDir"
cp -r result/share/doc/* "$installDir"
}
Expand Down

0 comments on commit 2017830

Please sign in to comment.