Skip to content

Commit

Permalink
Set home to /root when running build time services
Browse files Browse the repository at this point in the history
This change follows what we did for the post build checks
in commit ae05363.

Fixes #901
  • Loading branch information
mlschroe committed Dec 1, 2022
1 parent ae57404 commit 68cdff4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build
Original file line number Diff line number Diff line change
Expand Up @@ -1799,7 +1799,7 @@ for RECIPEPATH in "${RECIPEFILES[@]}" ; do

if test -e _service; then
echo "Running build time source services..."
$BUILD_DIR/runservices --buildroot "$BUILD_ROOT" || cleanup_and_exit 1
HOME=/root $BUILD_DIR/runservices --buildroot "$BUILD_ROOT" || cleanup_and_exit 1
fi

# get rid of old src dir, it is no longer needed and just wastes space
Expand Down

0 comments on commit 68cdff4

Please sign in to comment.