11 lines
217 B
Bash
11 lines
217 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -eu
|
||
|
|
||
|
this_dir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")")
|
||
|
readonly this_dir
|
||
|
|
||
|
exec \
|
||
|
"$this_dir/python-venv.sh" \
|
||
|
"$this_dir/pick/requirements.txt" \
|
||
|
"$this_dir/pick-ui.py" "$@"
|