From c7da5c62adfe925e3c1ac5d70f56f075e773c04f Mon Sep 17 00:00:00 2001 From: Yoshio Sugiyama Date: Wed, 15 Dec 2021 20:25:32 +0900 Subject: [PATCH] fix variable typo --- base-notebook/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-notebook/start.sh b/base-notebook/start.sh index 5703ede3..c3585ac8 100755 --- a/base-notebook/start.sh +++ b/base-notebook/start.sh @@ -141,7 +141,7 @@ if [ "$(id -u)" == 0 ] ; then fi if [ -n "${CHOWN_EXTRA}" ]; then for extra_dir in $(echo "${CHOWN_EXTRA}" | tr ',' ' '); do - _log "Ensuring ${extra_dir} is owned by ${NB_UID}:${NB_GID} ${CHOWN_HOME_OPTS:+(chown options: ${CHOWN_HOME_OPTS})}" + _log "Ensuring ${extra_dir} is owned by ${NB_UID}:${NB_GID} ${CHOWN_EXTRA_OPTS:+(chown options: ${CHOWN_EXTRA_OPTS})}" # shellcheck disable=SC2086 chown ${CHOWN_EXTRA_OPTS} "${NB_UID}:${NB_GID}" "${extra_dir}" done