From ccb83293d1f13c8d10c0f2fb9b970c384d47aa6f Mon Sep 17 00:00:00 2001 From: Gregor Zurowski Date: Thu, 5 Dec 2024 18:02:48 +0100 Subject: [PATCH] Remove unwanted error messages --- 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