Skip to content

Commit ecfec46

Browse files
committed
fixup! Support Jupyter Notebooks on Windows and POSIX
1 parent 7d8490d commit ecfec46

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

scripts/executeJupyterNotebook.sh

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
# in the same directory as the given jupyter notebook ipynb file
1616
# to create the environment.
1717

18-
# Note: This script uses conda to activate the environment defined in CODEGRAPH_CONDA_ENVIRONMENT (defaults to "codegraph").
19-
# It it isn't activated, it will save the currently activated environment, change to codegraph, and restore the original one at the end again.
20-
# In cases of an error it might be, that the original conda environment isn't set back. Typically this shouldn't be the case though.
21-
2218
# Requires juypter nbconvert,operatingSystemFunctions.sh
2319

2420
# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands)
@@ -31,7 +27,7 @@ ENABLE_JUPYTER_NOTEBOOK_PDF_GENERATION=${ENABLE_JUPYTER_NOTEBOOK_PDF_GENERATION:
3127
# CDPATH reduces the scope of the cd command to potentially prevent unintended directory changes.
3228
# This way non-standard tools like readlink aren't needed.
3329
SCRIPTS_DIR=${SCRIPTS_DIR:-$( CDPATH=. cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P )} # Repository directory containing the shell scripts
34-
echo "startNeo4j: SCRIPTS_DIR=$SCRIPTS_DIR"
30+
echo "executeJupyterNotebook: SCRIPTS_DIR=$SCRIPTS_DIR"
3531

3632
# Check if environment variable is set
3733
if [ -z "${NEO4J_INITIAL_PASSWORD}" ]; then

0 commit comments

Comments
 (0)