#!/bin/sh

if [ -L $0 ] ; then
    DIR=$(dirname "$(readlink -f "$0")") ;
else
    DIR=$(dirname "$0") ;
fi ;

cd "$DIR"

export TERM='xterm-256color'
exec python3 -m arsenal "$@"
