Skip to content

Commit 082e558

Browse files
authored
wamr-compiler/build_llvm.sh: use dot instead of source (#4541)
note that dot is in posix and more portable than source.
1 parent f90cc08 commit 082e558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wamr-compiler/build_llvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ cleanup() {
1414
trap cleanup EXIT INT TERM
1515

1616
/usr/bin/env python3 -m venv --clear "$TEMP_DIR"
17-
source "$TEMP_DIR/bin/activate"
17+
. "$TEMP_DIR/bin/activate"
1818
/usr/bin/env python3 -m pip install -r ../build-scripts/requirements.txt
1919
/usr/bin/env python3 ../build-scripts/build_llvm.py "$@"

0 commit comments

Comments
 (0)