9 lines
108 B
Bash
Executable File
9 lines
108 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
base=$(dirname "$(readlink -f "$0")")
|
|
cd "${base}"
|
|
|
|
exec ./venv/bin/capport-stats "$@"
|