Skip to content

Commit b351e36

Browse files
authored
Update entrypoint.sh
1 parent 55e2949 commit b351e36

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

entrypoint.sh

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ printf "#\n# Testing examples..\n"
2929
--exe \
3030
examples/*/*.py
3131

32-
wget https://bootstrap.pypa.io/pip/3.6/get-pip.py
33-
python${PYTHON} ./get-pip.py
32+
if [ -n "$RELEASE" ]; then
33+
wget https://bootstrap.pypa.io/pip/2.7/get-pip.py
34+
python${PYTHON} ./get-pip.py
35+
else
36+
echo ""
37+
fi
3438

3539
printf Done

0 commit comments

Comments
 (0)