Fixed cln directory and some permission issues

This commit is contained in:
kexkey
2018-10-11 16:02:15 -04:00
parent 7f9ebe6bb0
commit 74e4fc9fbf
4 changed files with 8 additions and 5 deletions

View File

@@ -3,13 +3,13 @@
trace()
{
if [ -n "${TRACING}" ]; then
echo "$(date -Is) ${1}" > /dev/stderr
echo "$(date -Is) ${1}" 1>&2
fi
}
trace_rc()
{
if [ -n "${TRACING}" ]; then
echo "$(date -Is) Last return code: ${1}" > /dev/stderr
echo "$(date -Is) Last return code: ${1}" 1>&2
fi
}