Skip to content

Commit

Permalink
Default to py3 on Linux/OS X
Browse files Browse the repository at this point in the history
  • Loading branch information
andOlga committed Sep 12, 2020
1 parent 40519ac commit 7a89d81
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bootstrap/higu_linux64_installer/install
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
cd "$(dirname "$0")"
cd install_data
python ./main.py || python3 ./main.py || python2 ./main.py
python3 ./main.py || python ./main.py || python2 ./main.py
2 changes: 1 addition & 1 deletion bootstrap/higu_linux64_installer/install_safe_mode
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
cd "$(dirname "$0")"
cd install_data
python ./cli_interactive.py || python3 ./cli_interactive.py || python2 ./cli_interactive.py
python3 ./cli_interactive.py || python ./cli_interactive.py || python2 ./cli_interactive.py
2 changes: 1 addition & 1 deletion bootstrap/higu_mac_installer/install.command
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
cd "$(dirname "$0")"
cd install_data
python ./main.py
python3 ./main.py || python ./main.py || python2 ./main.py
2 changes: 1 addition & 1 deletion bootstrap/higu_mac_installer/install_safe_mode.command
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh
cd "$(dirname "$0")"
cd install_data
python ./cli_interactive.py
python3 ./cli_interactive.py || python ./cli_interactive.py || python2 ./cli_interactive.py

0 comments on commit 7a89d81

Please sign in to comment.