#!/usr/bin/env bash


source ~/scripts/activate_ve ''

python -m crocodile.run $@

# check below if VIRTUAL_ENV enviroment variable exist, then deactivate it, other wise skip
if [ -n "$VIRTUAL_ENV" ]; then
  deactivate
fi

