From 6cef2dedb847c719610f10cb18b354e88863acfa Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Thu, 26 May 2016 11:36:48 +0200 Subject: git-r3.eclass: Do not create clone dirs if EVCS_OFFLINE is being used --- eclass/git-r3.eclass | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'eclass/git-r3.eclass') diff --git a/eclass/git-r3.eclass b/eclass/git-r3.eclass index f30600b930ad..99e2ed9edd60 100644 --- a/eclass/git-r3.eclass +++ b/eclass/git-r3.eclass @@ -343,7 +343,7 @@ _git-r3_set_gitdir() { GIT_DIR=${EGIT3_STORE_DIR}/${repo_name} - if [[ ! -d ${EGIT3_STORE_DIR} ]]; then + if [[ ! -d ${EGIT3_STORE_DIR} && ! ${EVCS_OFFLINE} ]]; then ( addwrite / mkdir -p "${EGIT3_STORE_DIR}" @@ -352,6 +352,14 @@ _git-r3_set_gitdir() { addwrite "${EGIT3_STORE_DIR}" if [[ ! -d ${GIT_DIR} ]]; then + if [[ ${EVCS_OFFLINE} ]]; then + eerror "A clone of the following repository is required to proceed:" + eerror " ${1}" + eerror "However, networking activity has been disabled using EVCS_OFFLINE and there" + eerror "is no local clone available." + die "No local clone of ${1}. Unable to proceed with EVCS_OFFLINE." + fi + local saved_umask if [[ ${EVCS_UMASK} ]]; then saved_umask=$(umask) -- cgit v1.2.3-65-gdbad