Skip to content

Commit 17f50a3

Browse files
committed
Jupyter: Fix start script to use ${PWD} instead of the incorrect ${CWD}.
1 parent 80f4373 commit 17f50a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

brev/jupyter-start.bash

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
mkdir -p /accelerated-computing-hub/logs
66

77
# Set the preferred directory to the current working directory, which is set by Docker Compose.
8-
ARGS="--ServerApp.preferred_dir=${CWD}"
8+
ARGS="--ServerApp.preferred_dir=${PWD:-/}"
99

1010
if [ -n "${1}" ]; then
1111
ARGS="--LabApp.default_url=${1}"

0 commit comments

Comments
 (0)