Skip to content

Commit

Permalink
Merge pull request #1191 from MonnXI/patch-1
Browse files Browse the repository at this point in the history
Modified the setup order
  • Loading branch information
pnhofmann authored Sep 4, 2024
2 parents 1190cc7 + bfdd6b0 commit 165b22a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
#!/bin/bash
cd $(dirname $0)

if python --version &> /dev/null; then
python installer
elif python3 --version &> /dev/null; then
if python3 --version &> /dev/null; then
python3 installer
elif python --version &> /dev/null; then
python installer
elif python2 --version &> /dev/null; then
python2 installer
else
Expand Down

0 comments on commit 165b22a

Please sign in to comment.