Skip to content

Commit b03905e

Browse files
committed
Updates default BASE_DIR path for SOF workspace
Changes the default BASE_DIR path to a more specific directory ("/home/sof/work/sof.git") when the SOF_WORKSPACE environment variable is unset, improving clarity and consistency. Signed-off-by: Christopher Turner <christopher.g.turner@intel.com>
1 parent a8fcde6 commit b03905e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/build-alsa-tools.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ declare -a COMMIT_ID=(
2222
# Directory where repositories will be cloned/updated.
2323
if [[ -z "$SOF_WORKSPACE" ]]; then
2424
# Environment variable is empty or unset so use default
25-
BASE_DIR="$HOME/work/sof"
25+
BASE_DIR="/home/sof/work/sof.git"
2626
else
2727
# Environment variable exists and has a value
2828
BASE_DIR="$SOF_WORKSPACE"

0 commit comments

Comments
 (0)