Skip to content
Snippets Groups Projects
Commit 1bfd6b59 authored by Julien Leduc's avatar Julien Leduc
Browse files

Fixed a typo that prevented LOGDIR to be created in the correct place: /var/log was used instead

parent 078e8364
No related branches found
No related tags found
No related merge requests found
......@@ -135,7 +135,7 @@ if [[ "x${TARGETDIR}" = "x" ]]; then
else
EOS_DIR="${EOS_BASEDIR}/${TARGETDIR}"
fi
LOGDIR="${LOGDIR}/$(basebane ${EOS_DIR})"
LOGDIR="${LOGDIR}/$(basename ${EOS_DIR})"
mkdir -p ${LOGDIR} || die "Cannot create directory LOGDIR: ${LOGDIR}"
mkdir -p ${LOGDIR}/xrd_errors || die "Cannot create directory LOGDIR/xrd_errors: ${LOGDIR}/xrd_errors"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment