File tree Expand file tree Collapse file tree 2 files changed +17
-22
lines changed Expand file tree Collapse file tree 2 files changed +17
-22
lines changed Original file line number Diff line number Diff line change @@ -37,28 +37,6 @@ function _pip_install() {
37
37
echo " Installing $2 using pip... done."
38
38
}
39
39
40
- # Try to use the binaries in the toolchain if available.
41
- if [ -n " ${CI} " ]; then
42
- echo " HELLO" !
43
- export PATH
44
- case " ${OSTYPE:? } " in
45
- cygwin)
46
- PATH=" /cygdrive/c/Python/Current:${PATH:- } "
47
- ;;
48
- darwin* )
49
- PATH=" /Library/Frameworks/Python.Framework/Versions/Current/bin:${PATH:- } "
50
- ;;
51
- * )
52
- PATH=" /opt/python/Current/bin:${PATH:- } "
53
- ;;
54
- esac
55
- fi
56
- set -x
57
- ls /Library/Frameworks/Python.Framework/Versions/
58
- which uv
59
- echo " $PATH "
60
- exit 1
61
-
62
40
# Ensure just is installed.
63
41
if ! command -v just > /dev/null 2>&1 ; then
64
42
# On most systems we can install directly.
Original file line number Diff line number Diff line change @@ -16,6 +16,23 @@ if [ -f $HERE/test-env.sh ]; then
16
16
. $HERE /test-env.sh
17
17
fi
18
18
19
+ # Try to use the binaries in the toolchain if available.
20
+ if [ -n " ${CI} " ]; then
21
+ echo " HELLO" !
22
+ export PATH
23
+ case " ${OSTYPE:? } " in
24
+ cygwin)
25
+ PATH=" /cygdrive/c/Python/Current:${PATH:- } "
26
+ ;;
27
+ darwin* )
28
+ PATH=" /Library/Frameworks/Python.Framework/Versions/Current/bin:${PATH:- } "
29
+ ;;
30
+ * )
31
+ PATH=" /opt/python/Current/bin:${PATH:- } "
32
+ ;;
33
+ esac
34
+ fi
35
+
19
36
# Ensure dependencies are installed.
20
37
bash $HERE /install-dependencies.sh
21
38
You can’t perform that action at this time.
0 commit comments