From 2017830a2c81a97f6b7679ea5fa0d921cd0f4535 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Mon, 18 Nov 2024 22:30:24 +0000 Subject: [PATCH] docs/ci: fix a typo when calling `mkdir -p` Should have been included in 852444755474998b1b24bdd2f60d332a0eb2c830 --- .github/workflows/build_documentation.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index f82c6537..0864213a 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -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}" @@ -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" }