File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
registry/coder/modules/jupyter-notebook Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -25,17 +25,17 @@ if [ -n "$REQUIREMENTS_PATH" ]; then
2525 if [ -f " $REQUIREMENTS_PATH " ]; then
2626 echo " 📄 Installing packages from $REQUIREMENTS_PATH ..."
2727 pip install --no-cache-dir -r " $REQUIREMENTS_PATH "
28- echo " 🥳 Requirements installed\n\n"
28+ echo " 🥳 Packages from $REQUIREMENTS_PATH have been installed\n\n"
2929 else
3030 echo " ⚠️ REQUIREMENTS_PATH is set to '$REQUIREMENTS_PATH ' but the file does not exist!\n\n"
3131 fi
3232fi
3333
3434# Install packages selected with PIP_INSTALL_EXTRA_PACKAGES
3535if [ -n " $PIP_INSTALL_EXTRA_PACKAGES " ]; then
36- echo " 📦 Installing extra pip packages: $PIP_INSTALL_EXTRA_PACKAGES "
36+ echo " 📦 Installing additional packages: $PIP_INSTALL_EXTRA_PACKAGES "
3737 pip install --no-cache-dir $PIP_INSTALL_EXTRA_PACKAGES
38- echo " 🥳 Extra packages installed\n\n"
38+ echo " 🥳 Additional packages have been installed\n\n"
3939fi
4040
4141echo " 👷 Starting jupyter-notebook in background..."
You can’t perform that action at this time.
0 commit comments