Skip to content

Commit bfdd6b0

Browse files
authored
Modified the setup order
Modified the setup order so it takes python3 by default
1 parent 1190cc7 commit bfdd6b0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#!/bin/bash
22
cd $(dirname $0)
33

4-
if python --version &> /dev/null; then
5-
python installer
6-
elif python3 --version &> /dev/null; then
4+
if python3 --version &> /dev/null; then
75
python3 installer
6+
elif python --version &> /dev/null; then
7+
python installer
88
elif python2 --version &> /dev/null; then
99
python2 installer
1010
else

0 commit comments

Comments
 (0)