Skip to content

Commit

Permalink
fix oud base installation
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Oehrli committed Jan 18, 2021
1 parent ac1ebb0 commit 08d0215
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion local/oudbase/bin/oudbase_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@ tty >/dev/null 2>&1
pTTY=$?

# Define Logfile but first reset LOG_BASE if directory does not exists
if [ ! -d ${LOG_BASE} ] && [ -w ${LOG_BASE} ] ; then
if [ ! -d ${LOG_BASE} ] || [ ! -w ${LOG_BASE} ] ; then
echo "INFO : set LOG_BASE to /tmp"
export LOG_BASE="/tmp"
fi

Expand Down

0 comments on commit 08d0215

Please sign in to comment.