2021-04-20 10:48:24 +00:00
|
|
|
#!/bin/sh -e
|
2021-04-20 09:27:48 +00:00
|
|
|
|
2021-04-20 10:48:24 +00:00
|
|
|
readonly module=antp
|
|
|
|
|
2021-12-31 13:47:40 +00:00
|
|
|
if ! [ -d "$module" ]; then
|
|
|
|
readonly this=$(readlink -f -- "$0")
|
|
|
|
readonly dir=$(dirname -- "$this")
|
|
|
|
cd -- "$dir" || exit 1
|
|
|
|
fi
|
2021-04-20 10:48:24 +00:00
|
|
|
|
|
|
|
python3 -m "$module" "$@"
|