Skip to content

Commit 46c4b11

Browse files
committed
Modify run.sh
1 parent 4333940 commit 46c4b11

File tree

1 file changed

+3
-3
lines changed
  • registry/coder/modules/jupyter-notebook

1 file changed

+3
-3
lines changed

registry/coder/modules/jupyter-notebook/run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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
3232
fi
3333

3434
# Install packages selected with PIP_INSTALL_EXTRA_PACKAGES
3535
if [ -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"
3939
fi
4040

4141
echo "👷 Starting jupyter-notebook in background..."

0 commit comments

Comments
 (0)