Skip to content

Commit bb31b6d

Browse files
tnguyen14diemol
authored andcommitted
Fix issue with shebang length being too long in pip executable (#872)
1 parent 0a793b1 commit bb31b6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/bootstrap.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ if [ "${TRAVIS:-false}" = "false" ]; then
88
fi
99

1010

11-
pip install selenium===3.14.1 \
12-
docker===3.5.0 \
13-
| grep -v 'Requirement already satisfied'
11+
python -m pip install selenium===3.14.1 \
12+
docker===3.5.0 \
13+
| grep -v 'Requirement already satisfied'
1414

1515
python test.py $1 $2
1616
ret_code=$?

0 commit comments

Comments
 (0)