6 lines
132 B
Bash
Executable file
6 lines
132 B
Bash
Executable file
#!/bin/sh -e
|
|
|
|
base=`dirname $0`
|
|
export PYTHONPATH="$base/..:$PYTHONPATH"
|
|
|
|
exec python3-coverage run -a "$base/dsc-datatool.py" "$@"
|