Skip to content

Commit

Permalink
General: Re-arrange echos
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Puerto committed Feb 12, 2024
1 parent dd56e7d commit 466459a
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ echo $(date)
mkdir -p "$VENV_PATH"
tar -xf {{ tar_file_path }} -C "$VENV_PATH"
fi
echo "VENV copied"
echo $(date)
echo "VENV copied"
source "$VENV_PATH/bin/activate"
echo $(date)
echo "VENV activated"
{% endif %}
{% if module_manager == "lmod" %}
Expand Down Expand Up @@ -93,8 +94,11 @@ find_port () {
done
echo "${port}"
}
echo "Looking for port"
echo $(date)
PORT=$(find_port)
echo "Found port"
echo $(date)
# Generate Jupyter configuration file with secure file permissions based on JupyterLab version
(
Expand Down

0 comments on commit 466459a

Please sign in to comment.