mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
modules: Throw an error running hugo mod vendor on mountless module
This commit is contained in:
parent
bf55afd71f
commit
4ffaeaf155
1 changed files with 6 additions and 0 deletions
|
@ -237,6 +237,12 @@ func (c *Client) Vendor() error {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// See https://github.com/gohugoio/hugo/issues/8239
|
||||||
|
// This is an error situation. We need something to vendor.
|
||||||
|
if t.Mounts() == nil {
|
||||||
|
return errors.Errorf("cannot vendor module %q, need at least one mount", t.Path())
|
||||||
|
}
|
||||||
|
|
||||||
fmt.Fprintln(&modulesContent, "# "+t.Path()+" "+t.Version())
|
fmt.Fprintln(&modulesContent, "# "+t.Path()+" "+t.Version())
|
||||||
|
|
||||||
dir := t.Dir()
|
dir := t.Dir()
|
||||||
|
|
Loading…
Reference in a new issue