We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa3671b commit 10766cbCopy full SHA for 10766cb
install.sh
@@ -576,12 +576,11 @@ install_python_requirements() {
576
cd -
577
}
578
579
-# ensure_virtualenv_ready: create the venv and install requirements if missing (useful in Docker app-only stage).
580
ensure_virtualenv_ready() {
581
if [ ! -d "$INSTALL_PATH/virtualenv" ]; then
582
- log_warn "Virtualenv not found. Creating and installing requirements."
583
- setup_virtualenv "install"
584
- install_python_requirements
+ log_warn "Virtualenv missing. INSTALL_PATH=$INSTALL_PATH"
+ ls -la "$INSTALL_PATH" || true
+ abort_install "Virtualenv not found at $INSTALL_PATH/virtualenv. Run --install dep first."
585
fi
586
587
0 commit comments