mirror of
https://github.com/status-im/status-react.git
synced 2025-01-09 18:46:19 +00:00
9 lines
168 B
Bash
9 lines
168 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
function property() {
|
||
|
grep "${2}" ${1}|cut -d'=' -f2
|
||
|
}
|
||
|
|
||
|
function property_gradle() {
|
||
|
property $(repo_path)/android/gradle.properties ${1}
|
||
|
}
|