create HOME directory if not exists

This commit is contained in:
Brad Rydzewski 2021-05-04 21:16:15 -04:00
parent 16f4dd8829
commit 9a0e8cc9d6
1 changed files with 9 additions and 1 deletions

View File

@ -5,13 +5,21 @@ if [[ ! -z "${DRONE_WORKSPACE}" ]]; then
fi
# if the home directory is not set (which should
# never be the case) we should set to /root
# never be the case) we default to /root
if [[ -z "${HOME}" ]]; then
echo "HOME directory not set; default to /root"
export HOME=/root
fi
# if the home directory does not exist it should
# be created.
if [ ! -d "${HOME}" ]; then
echo "HOME directory does not exist; creating HOME"
mkdir -p ${HOME}
fi
# if the netrc enviornment variables exist, write
# the netrc file.