Skip to content

Commit

Permalink
avoid some unnecessary output
Browse files Browse the repository at this point in the history
  • Loading branch information
epwalsh committed Jan 9, 2025
1 parent 1d8f7e0 commit d5d732d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gantry/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ if [[ -z "$NO_PYTHON" ]]; then

ensure_conda

if conda activate "$VENV_NAME"; then
if conda activate "$VENV_NAME" &> /dev/null; then
echo "[GANTRY] Using existing conda environment '$VENV_NAME'"
# The virtual environment already exists. Possibly update it based on an environment file.
if [[ -f "$CONDA_ENV_FILE" ]]; then
Expand Down

0 comments on commit d5d732d

Please sign in to comment.