Merge "Use make_mock_top function" into main

This commit is contained in:
Treehugger Robot 2023-10-11 22:10:48 +00:00 committed by Gerrit Code Review
commit 36674db0b3

View file

@ -16,7 +16,7 @@ function make_mock_top {
if [[ -n "$HARDWIRED_MOCK_TOP" ]]; then
MOCK_TOP="$HARDWIRED_MOCK_TOP"
else
MOCK_TOP=$(mktemp -t -d st.XXXXX)
MOCK_TOP=$(make_mock_top)
trap cleanup_mock_top EXIT
fi