Skip to content

Commit cd1bf86

Browse files
authored
Update install-dependencies.sh
1 parent a4af16c commit cd1bf86

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

utils/webassembly/macos/install-dependencies.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
set -ex
44

5-
pip3 install six
5+
if ! command -v pip &> /dev/null
6+
then
7+
PIP_COMMAND=pip3
8+
else
9+
PIP_COMMAND=pip
10+
fi
11+
12+
13+
$PIP_COMMAND install six
614

715
brew install cmake ninja llvm sccache
816

0 commit comments

Comments
 (0)