mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 05:10:11 +01:00
11 lines
222 B
Bash
11 lines
222 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/requirements.txt" \
|
||
|
|
"$this_dir/ci_gantt_chart.py" "$@"
|