Skip to content

Commit 7eeaeb1

Browse files
authored
[864] WORKSPACE_NAME environment variable is empty when workspace name has spaces (#867)
1 parent 5701dc7 commit 7eeaeb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docker/jupyter/scripts/kernel/kernel_bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
# The workspace name is simply the CWD of the running notebook.
1515
PWD="$(pwd)"
16-
export WORKSPACE_NAME="$(basename $PWD)"
16+
export WORKSPACE_NAME="$(basename "$PWD")"
1717

1818
# Parse the .delocalize.json file (if it exists) in the workspace directory to obtain the workspace bucket.
1919
DELOCALIZE_FILE="$PWD/.delocalize.json"

0 commit comments

Comments
 (0)