File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ function _pip_install() {
39
39
40
40
41
41
# Ensure just is installed.
42
- if ! command -v just 2 > /dev/null; then
42
+ if ! command -v just > /dev/null 2>&1 ; then
43
43
# On most systems we can install directly.
44
44
_TARGET=" "
45
45
if [ " Windows_NT" = " ${OS:- } " ]; then
@@ -54,7 +54,7 @@ if ! command -v just 2>/dev/null; then
54
54
fi
55
55
56
56
# Install uv.
57
- if ! command -v uv 2 > /dev/null; then
57
+ if ! command -v uv > /dev/null 2>&1 ; then
58
58
echo " Installing uv..."
59
59
# On most systems we can install directly.
60
60
curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR=" $_BIN_DIR " INSTALLER_NO_MODIFY_PATH=1 sh || {
Original file line number Diff line number Diff line change @@ -21,7 +21,6 @@ bash $HERE/install-dependencies.sh
21
21
22
22
# Get the appropriate UV_PYTHON.
23
23
. $ROOT /.evergreen/utils.sh
24
- set -x
25
24
26
25
if [ -z " ${PYTHON_BINARY:- } " ]; then
27
26
if [ -n " ${PYTHON_VERSION:- } " ]; then
You can’t perform that action at this time.
0 commit comments