11 lines
158 B
Bash
Executable File
11 lines
158 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
cd "$(dirname "$0")"
|
|
|
|
if [[ ! -d googleapis ]]; then
|
|
git clone https://github.com/googleapis/googleapis.git
|
|
fi
|
|
|
|
exec cargo run
|