This commit is contained in:
Richard Sperry 2025-04-17 01:11:16 -07:00
parent df34520083
commit 68f65e7e8a

View file

@ -43,6 +43,7 @@ run() {
setup_clean_view() {
# Links some common directories to the user's home folder for convenience
for dir in "${DIRECTORIES[@]}"; do
if [ -e "${dir}" ]; then
current="${CODE_SERVER_WORKSPACE_DIR}"/"${dir}"
if [ ! -e "${current}" ]; then
@ -57,6 +58,9 @@ setup_clean_view() {
else
bashio::log.info "${dir} has good link."
fi
else
bashio::log.warning "${dir} does not exist, cannot link..."
fi
done
if [[ ! -d "${CODE_SERVER_WORKSPACE_DIR}"/code-server-config ]]; then