On Tue, Oct 01, 2019 at 04:07:49PM -0500, William Hubbs wrote: > --- > eclass/go-module.eclass | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass > index e6152966911..f1f1d743f43 100644 > --- a/eclass/go-module.eclass > +++ b/eclass/go-module.eclass > @@ -165,6 +165,7 @@ go-module_live_vendor() { > # Display a warning about security updates for Go programs. > go-module_pkg_postinst() { > debug-print-function ${FUNCNAME} "$@" > + [[ -n ${REPLACING_VERSIONS} ]] || return 0 Typo fix, || will be changed to && before I commit. William