blob: 78e277b8ee6e3b6a78b4bfc5197de66146360310 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/bash
refresh_butckrepo() {
if command -v butckrepo-refresh &> /dev/null; then
butckrepo-refresh
else
cargo run --bin butckrepo-refresh
fi
}
cd "$(dirname "$0")"
refresh_butckrepo
cargo install --path ./
|