Skip to content

Commit 10766cb

Browse files
committed
remove vinstall in ensure venv, now just a message and exit
1 parent fa3671b commit 10766cb

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

install.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -576,12 +576,11 @@ install_python_requirements() {
576576
cd -
577577
}
578578

579-
# ensure_virtualenv_ready: create the venv and install requirements if missing (useful in Docker app-only stage).
580579
ensure_virtualenv_ready() {
581580
if [ ! -d "$INSTALL_PATH/virtualenv" ]; then
582-
log_warn "Virtualenv not found. Creating and installing requirements."
583-
setup_virtualenv "install"
584-
install_python_requirements
581+
log_warn "Virtualenv missing. INSTALL_PATH=$INSTALL_PATH"
582+
ls -la "$INSTALL_PATH" || true
583+
abort_install "Virtualenv not found at $INSTALL_PATH/virtualenv. Run --install dep first."
585584
fi
586585
}
587586

0 commit comments

Comments
 (0)