2020-07-20 08:55:27 -07:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
cd "$(dirname "$0")"
|
|
|
|
|
2020-10-12 20:19:41 -07:00
|
|
|
cargo="$(readlink -f "../../cargo")"
|
|
|
|
|
2020-07-20 08:55:27 -07:00
|
|
|
if [[ ! -d googleapis ]]; then
|
|
|
|
git clone https://github.com/googleapis/googleapis.git
|
|
|
|
fi
|
|
|
|
|
2020-10-12 20:19:41 -07:00
|
|
|
exec "$cargo" run
|