Skip to content

Commit

Permalink
[864] WORKSPACE_NAME environment variable is empty when workspace nam…
Browse files Browse the repository at this point in the history
…e has spaces (#867)
  • Loading branch information
rtitle authored Apr 17, 2019
1 parent 5701dc7 commit 7eeaeb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/jupyter/scripts/kernel/kernel_bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

# The workspace name is simply the CWD of the running notebook.
PWD="$(pwd)"
export WORKSPACE_NAME="$(basename $PWD)"
export WORKSPACE_NAME="$(basename "$PWD")"

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

0 comments on commit 7eeaeb1

Please sign in to comment.