You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Fail on any error ("-e" = exit on first error, "-o pipefail" exist on errors within piped commands)
21
-
set -eo pipefail
21
+
set -o errexit -o pipefail
22
22
23
23
ENABLE_JUPYTER_NOTEBOOK_PDF_GENERATION=${ENABLE_JUPYTER_NOTEBOOK_PDF_GENERATION:-""}# Enable PDF generation for Jupyter Notebooks if set to any non empty value e.g. "true"
24
24
@@ -83,7 +83,7 @@ if [ ! -f "${jupyter_notebook_file_path}/.env" ] ; then
83
83
fi
84
84
85
85
# Create and activate (if necessary) Conda environment as defined in environment variable CODEGRAPH_CONDA_ENVIRONMENT (default "codegraph")
0 commit comments