This commit is contained in:
Louis Vézina 2017-10-21 23:01:24 -04:00
parent ef1e6edbfb
commit d1af07ea06
1 changed files with 19 additions and 4 deletions

View File

@ -6,10 +6,25 @@ if os.path.exists(os.path.join(os.path.dirname(__file__), 'data/db/bazarr.db'))
pass pass
else: else:
# Create data directory tree # Create data directory tree
os.mkdir(os.path.join(os.path.dirname(__file__), 'data')) try:
os.mkdir(os.path.join(os.path.dirname(__file__), 'data/cache')) os.mkdir(os.path.join(os.path.dirname(__file__), 'data'))
os.mkdir(os.path.join(os.path.dirname(__file__), 'data/db')) except OSError:
os.mkdir(os.path.join(os.path.dirname(__file__), 'data/log')) pass
try:
os.mkdir(os.path.join(os.path.dirname(__file__), 'data/cache'))
except OSError:
pass
try:
os.mkdir(os.path.join(os.path.dirname(__file__), 'data/db'))
except OSError:
pass
try:
os.mkdir(os.path.join(os.path.dirname(__file__), 'data/log'))
except OSError:
pass
# Get SQL script from file # Get SQL script from file
fd = open(os.path.join(os.path.dirname(__file__), 'create_db.sql'), 'r') fd = open(os.path.join(os.path.dirname(__file__), 'create_db.sql'), 'r')