Skip to content

Commit 8322eda

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 f8c9377 commit 8322eda

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)