• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/usr/bin/env bash
2set -eu
3
4this_dir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")")
5readonly this_dir
6
7exec \
8  "$this_dir/../python-venv.sh" \
9  "$this_dir/requirements.txt" \
10  "$this_dir/ci_run_n_monitor.py" "$@"
11