mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
dcf425c846
The motivation behind the original implementation was probably to show disabled modules when running `hugo mod graph`. Fixes #11376
25 lines
808 B
Text
25 lines
808 B
Text
dostounix golden/vendor.txt
|
|
|
|
hugo mod vendor
|
|
cmp _vendor/modules.txt golden/vendor.txt
|
|
ls _vendor/github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml
|
|
stdout 'config.toml'
|
|
ls _vendor/github.com/gohugoio/hugo-mod-integrationtests/withhugotoml
|
|
stdout 'hugo.toml'
|
|
|
|
|
|
-- hugo.toml --
|
|
title = "Hugo Modules Test"
|
|
[module]
|
|
[[module.imports]]
|
|
path="github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml"
|
|
[[module.imports]]
|
|
path="github.com/gohugoio/hugo-mod-integrationtests/withhugotoml"
|
|
-- go.mod --
|
|
go 1.19
|
|
|
|
module github.com/gohugoio/testmod
|
|
-- golden/vendor.txt --
|
|
# github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml v1.1.0
|
|
# github.com/gohugoio/hugo-mod-integrationtests/commonmod v0.0.0-20230823103305-919cefe8a425
|
|
# github.com/gohugoio/hugo-mod-integrationtests/withhugotoml v1.1.0
|