Aaron.L.Xu 27297fd1af fix a typo in script/release/utils.sh
Signed-off-by: Aaron.L.Xu <likexu@harmonycloud.cn>
2017-02-16 11:14:49 +08:00

24 lines
404 B
Bash

#!/bin/bash
#
# Util functions for release scripts
#
set -e
set -o pipefail
function browser() {
local url=$1
xdg-open $url || open $url
}
function find_remote() {
local url=$1
for remote in $(git remote); do
git config --get remote.${remote}.url | grep $url > /dev/null && echo -n $remote
done
# Always return true, extra remotes cause it to return false
true
}