Skip to content

Commit b838b8b

Browse files
committed
cleanup output
1 parent 3e2bfc7 commit b838b8b

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.evergreen/scripts/install-dependencies.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function _pip_install() {
3939

4040

4141
# Ensure just is installed.
42-
if ! command -v just 2>/dev/null; then
42+
if ! command -v just >/dev/null 2>&1; then
4343
# On most systems we can install directly.
4444
_TARGET=""
4545
if [ "Windows_NT" = "${OS:-}" ]; then
@@ -54,7 +54,7 @@ if ! command -v just 2>/dev/null; then
5454
fi
5555

5656
# Install uv.
57-
if ! command -v uv 2>/dev/null; then
57+
if ! command -v uv >/dev/null 2>&1; then
5858
echo "Installing uv..."
5959
# On most systems we can install directly.
6060
curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="$_BIN_DIR" INSTALLER_NO_MODIFY_PATH=1 sh || {

.evergreen/scripts/setup-dev-env.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ bash $HERE/install-dependencies.sh
2121

2222
# Get the appropriate UV_PYTHON.
2323
. $ROOT/.evergreen/utils.sh
24-
set -x
2524

2625
if [ -z "${PYTHON_BINARY:-}" ]; then
2726
if [ -n "${PYTHON_VERSION:-}" ]; then

0 commit comments

Comments
 (0)