#!/bin/sh
prefix=/usr
export PATH="${prefix}/share/imcom:${PATH}"
export PYTHONPATH="${HOME}/.imcom:${PYTHONPATH}"
if [ "$1" = "-c" ] || [ "$1" = "--create" ]; then
	AccountCreator.py && CLI.py
else
	CLI.py "$@"
fi
