mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2024-11-23 18:24:13 +08:00
b13473efe9
Signed-off-by: Eric Engestrom <eric@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24367>
11 lines
217 B
Bash
Executable File
11 lines
217 B
Bash
Executable File
#!/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" "$@"
|