diff options
author | 2020-09-14 09:55:15 -0500 | |
---|---|---|
committer | 2020-09-14 09:55:54 -0500 | |
commit | cf487cb8ee884fd5f237f64802981904f0bbfc1d (patch) | |
tree | b30e9a0f7d1cee03577dac5dfaa719fcac993fec | |
parent | dev-libs/zziplib: unconditionally call pkg_setup (diff) | |
download | gentoo-cf487cb8ee884fd5f237f64802981904f0bbfc1d.tar.gz gentoo-cf487cb8ee884fd5f237f64802981904f0bbfc1d.tar.bz2 gentoo-cf487cb8ee884fd5f237f64802981904f0bbfc1d.zip |
eclass/go-module.eclass: add a missing die call
Signed-off-by: William Hubbs <williamh@gentoo.org>
-rw-r--r-- | eclass/go-module.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/go-module.eclass b/eclass/go-module.eclass index 7b66c3e2b1ed..c9a7ab12eaf0 100644 --- a/eclass/go-module.eclass +++ b/eclass/go-module.eclass @@ -338,7 +338,7 @@ _go-module_src_unpack_verify_gosum() { die "go-module_set_globals must be called in global scope" fi - cd "${S}" + cd "${S}" || die "cd failed" # Cleanup the modules before starting anything else # This will print 'downloading' messages, but it's accessing content from |