wamr-compiler/build_llvm.sh: use dot instead of source (#4541)

note that dot is in posix and more portable than source.
This commit is contained in:
YAMAMOTO Takashi 2025-08-11 16:06:00 +09:00 committed by GitHub
parent f90cc086ad
commit 082e558d66
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -14,6 +14,6 @@ cleanup() {
trap cleanup EXIT INT TERM
/usr/bin/env python3 -m venv --clear "$TEMP_DIR"
source "$TEMP_DIR/bin/activate"
. "$TEMP_DIR/bin/activate"
/usr/bin/env python3 -m pip install -r ../build-scripts/requirements.txt
/usr/bin/env python3 ../build-scripts/build_llvm.py "$@"