#!/usr/bin/env bash
pwd
if [[ ! $@ ]]; then
    python3 ./tracardi_plugin_scaffold/create_plugin.py -h
else
    python3 ./tracardi_plugin_scaffold/create_plugin.py $@
fi