blob: a77426f1cf899359170e93204f3e54927983d5c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env bash
function commit_changes {
if [[ $(git status --porcelain) ]]; then
git commit -a -S -m "$1"
fi
}
function ensure_crowdin_api_key {
test ! -z "$CROWDIN_API_KEY"
}
|