diff options
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/Manifest.gz | bin | 37514 -> 37516 bytes | |||
-rw-r--r-- | eclass/go-module.eclass | 4 |
2 files changed, 3 insertions, 1 deletions
diff --git a/eclass/Manifest.gz b/eclass/Manifest.gz Binary files differindex 61bd1c686a81..a3c165367b3d 100644 --- a/eclass/Manifest.gz +++ b/eclass/Manifest.gz diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 4916b31a1b59..10ed475c5b11 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -360,7 +360,9 @@ go-module_src_unpack() { default if [[ ! -d "${S}"/vendor ]]; then cd "${S}" - ego mod verify + local nf + [[ -n ${NONFATAL_VERIFY} ]] && nf=nonfatal + ${nf} ego mod verify fi fi } |