File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
contrib/tools/config-docs-generator Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ ENV PROJECT_ROOT=/project_root \
29
29
TEMP_DIR=/tmp/stacks-config-docs/doc-generation \
30
30
EXTRACT_DOCS_BIN=/build/target/release/extract-docs \
31
31
GENERATE_MARKDOWN_BIN=/build/target/release/generate-markdown \
32
+ OUTPUT_DIR=/project_root/target/generated-docs \
32
33
SKIP_BUILD=true
33
34
34
35
# Create the Docker-specific temp directory
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ NC='\033[0m' # No Color
11
11
# Configuration - Allow environment variable overrides
12
12
SCRIPT_DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd) "
13
13
PROJECT_ROOT=" ${PROJECT_ROOT:- $(cd " $SCRIPT_DIR /../../../" && pwd)} "
14
- OUTPUT_DIR=" $PROJECT_ROOT /docs/generated"
15
14
CARGO_TARGET_DIR=" ${CARGO_TARGET_DIR:- $PROJECT_ROOT / target} "
15
+ OUTPUT_DIR=" ${OUTPUT_DIR:- $CARGO_TARGET_DIR / generated-docs} "
16
16
TEMP_DIR=" ${TEMP_DIR:- $CARGO_TARGET_DIR / doc-generation} "
17
17
18
18
# Binary paths - allow override via environment
You can’t perform that action at this time.
0 commit comments