From b1ff8cdd1e1ba5e13b109e39d12a89942ea758a6 Mon Sep 17 00:00:00 2001 From: Gregor Zurowski Date: Thu, 5 Dec 2024 18:46:22 +0100 Subject: [PATCH] Remove unwanted error messages (#24) --- bin/exec-env | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/exec-env b/bin/exec-env index bc98b12..967a6b3 100755 --- a/bin/exec-env +++ b/bin/exec-env @@ -22,10 +22,8 @@ setup_virtualenv() { if [[ ! -d "$VIRTUAL_ENV" ]]; then if [[ "${MISE_POETRY_AUTO_INSTALL:-}" != "true" ]] && [[ "${MISE_POETRY_AUTO_INSTALL:-}" != "1" ]]; then - echoerr "mise-poetry: Virtualenv does not exist at $VIRTUAL_ENV. Execute \`poetry install\` to create one." return fi - echoerr "mise-poetry: No virtualenv exists. Executing \`poetry install\` to create one." poetry_bin install VIRTUAL_ENV="$(poetry_bin env info --path)" fi