fix mkdir

This commit is contained in:
wh1te909 2023-07-09 03:08:16 +00:00 committed by sadnub
parent cd450f55e2
commit c88dac6437
1 changed files with 3 additions and 3 deletions

View File

@ -396,11 +396,11 @@ if [ ! -d /opt/tactical/reporting ]; then
fi
if [ ! -d /opt/tactical/reporting/assets ]; then
sudo mkdir -p /opt/tactical/reporting/assets
sudo mkdir /opt/tactical/reporting/assets
fi
if [ ! -d /opt/tactical/reporting/assets ]; then
sudo mkdir -p /opt/tactical/reporting/schemas
if [ ! -d /opt/tactical/reporting/schemas ]; then
sudo mkdir /opt/tactical/reporting/schemas
fi
sudo chown -R ${USER}:${USER} /opt/tactical