File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ source shell_scripts/init_safety_debug.sh
15
15
source shell_scripts/init_paths.sh
16
16
source shell_scripts/init_utilities.sh
17
17
source shell_scripts/init_machine_type.sh
18
+ source shell_scripts/init_select_python.sh
18
19
19
20
# ##################### SETTINGS #####################
20
21
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # ##################### COPYRIGHT/COPYLEFT ######################
4
+
5
+ # (C) 2020 Michael Soegtrop
6
+
7
+ # Released to the public under the
8
+ # Creative Commons CC0 1.0 Universal License
9
+ # See https://creativecommons.org/publicdomain/zero/1.0/legalcode.txt
10
+
11
+ # ##################### Select a python interperter #####################
12
+
13
+ # Cygwin stopped to have a /usr/bin/python symlink, but some build scripts
14
+ # expect that there is *a* python.
15
+
16
+ if [[ " $OSTYPE " == cygwin ]]
17
+ then
18
+ ln -s -f /usr/bin/python2 /usr/bin/python
19
+ fi
You can’t perform that action at this time.
0 commit comments