#!/usr/bin/env python

import os
import sys

import stimela

# Ensure that logging infrastructure exists

if not os.path.exists(stimela.LOG_HOME):
    os.mkdir(stimela.LOG_HOME)

stimela.main([a for a in sys.argv[1:]])
