We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfb86da commit 638f5baCopy full SHA for 638f5ba
scripts/apidocgen/generate.sh
@@ -4,6 +4,8 @@
4
# from the coderd API.
5
6
set -euo pipefail
7
+# shellcheck source=../scripts/lib.sh
8
+source "$(dirname "${BASH_SOURCE[0]}")/../lib.sh"
9
10
SCRIPT_DIR=$(dirname "${BASH_SOURCE[0]}")
11
API_MD_TMP_FILE=$(mktemp /tmp/coder-apidocgen.XXXXXX)
@@ -13,7 +15,7 @@ cleanup() {
13
15
}
14
16
trap cleanup EXIT
17
-echo "Use temporary file: ${API_MD_TMP_FILE}"
18
+log "Use temporary file: ${API_MD_TMP_FILE}"
19
20
(
21
cd "$SCRIPT_DIR/../.."
0 commit comments