6 lines
152 B
Plaintext
6 lines
152 B
Plaintext
|
#!/bin/sh
|
||
|
[ "${IEP_VERBOSE}" = 0 ] || {
|
||
|
echo "Running ${0##*/}:" >&2
|
||
|
printf ' - %s\n' "$@" >&2
|
||
|
}
|
||
|
exec python3 "/usr/local/lib/jinja2/${0##*/}.py" "$@"
|