#!/bin/sh

set -e

EVENTLOGDIR=/var/lib/deepin/event-log/increment

if [ ! -d $EVENTLOGDIR ]; then
    mkdir -p $EVENTLOGDIR
fi

exit 0
