10 lines
150 B
Bash
10 lines
150 B
Bash
#!/usr/bin/env bash
|
|
|
|
_build_abra() {
|
|
if [[ ! -e "$ROOT/abra" ]]; then
|
|
cd "$ROOT" && make build-dev
|
|
return 0
|
|
fi
|
|
return 0
|
|
}
|