Changed token capitalization

This commit is contained in:
2026-01-30 12:57:39 +01:00
parent 6afb5215c1
commit 7bbfcbcbf3
+3 -3
View File
@@ -2,7 +2,7 @@
# Print the JupyterLab URL from the latest jupyterlab_*.log.
# On Cristallina the real token is redacted in the log ("token=..."),
# so if the token is missing or redacted we replace it with the most commonly used
# token "Cristallina" to produce a usable URL.
# token "cristallina" to produce a usable URL.
set -euo pipefail
@@ -33,7 +33,7 @@ fi
# If token is missing or redacted, replace with a 'Cristallina' token
if [[ "$URL" != *"token="* || "$URL" == *"token=..."* ]]; then
URL="${URL%%\?*}?token=Cristallina"
URL="${URL%%\?*}?token=cristallina"
fi
echo "$URL"
echo "$URL"