Skip to content

Commit 630482c

Browse files
committed
scripts: gen-doc: fix sof workspace venv
Workspace venv should be in top level SOF workspace directory since it also has to be used for pip installation of SOF docs dependecies and not just zephyr build python packages. Signed-off-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
1 parent 771cd0b commit 630482c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/gen-doc.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if [ ! -z "$ZEPHYR_BASE" ]; then
1515
VENV_DIR="$ZEPHYR_BASE/.venv"
1616
echo "Using Zephyr environment at $ZEPHYR_BASE"
1717
elif [ ! -z "$SOF_WORKSPACE" ]; then
18-
VENV_DIR="$SOF_WORKSPACE/zephyr/.venv"
18+
VENV_DIR="$SOF_WORKSPACE/.venv"
1919
echo "Using SOF/Zephyr environment at $SOF_WORKSPACE"
2020
else
2121
# fallback to the zephyr default from the getting started guide

0 commit comments

Comments
 (0)