mirror of https://github.com/status-im/consul.git
Add override capability to blacklist a remote
This commit is contained in:
parent
f35692daa6
commit
4e048162e0
|
@ -441,6 +441,17 @@ function find_git_remote {
|
||||||
return ${ret}
|
return ${ret}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function git_remote_not_blacklisted {
|
||||||
|
# Arguments:
|
||||||
|
# $1 - path to the repo
|
||||||
|
# $2 - the remote name
|
||||||
|
#
|
||||||
|
# Returns:
|
||||||
|
# 0 - not blacklisted
|
||||||
|
# * - blacklisted
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
function is_git_clean {
|
function is_git_clean {
|
||||||
# Arguments:
|
# Arguments:
|
||||||
# $1 - Path to git repo
|
# $1 - Path to git repo
|
||||||
|
|
|
@ -320,8 +320,11 @@ function publish_release {
|
||||||
status_stage "==> Confirming Git Changes"
|
status_stage "==> Confirming Git Changes"
|
||||||
confirm_git_push_changes "$1" || return 1
|
confirm_git_push_changes "$1" || return 1
|
||||||
|
|
||||||
status_stage "==> Confirming Git Remote"
|
status_stage "==> Checking for blacklisted Git Remote"
|
||||||
local remote=$(find_git_remote "${sdir}") || return 1
|
local remote=$(find_git_remote "${sdir}") || return 1
|
||||||
|
git_remote_not_blacklisted "${sdir}" "${remote}" || return 1
|
||||||
|
|
||||||
|
status_stage "==> Confirming Git Remote"
|
||||||
confirm_git_remote "${sdir}" "${remote}" || return 1
|
confirm_git_remote "${sdir}" "${remote}" || return 1
|
||||||
|
|
||||||
if is_set "${pub_git}"
|
if is_set "${pub_git}"
|
||||||
|
|
Loading…
Reference in New Issue