github.com/anakojm/hugo-katex@v0.0.0-20231023141351-42d6f5de9c0b/testscripts/commands/mod_get_u.txt (about) 1 hugo mod get -u 2 hugo mod graph 3 stdout 'commonmod@v1.0.1.*commonmod2@v1.0.2' 4 5 -- hugo.toml -- 6 title = "Hugo Modules Update Test" 7 [module] 8 [[module.imports]] 9 path="github.com/gohugoio/hugo-mod-integrationtests/withconfigtoml" 10 disable = true 11 [[module.imports]] 12 path="github.com/gohugoio/hugo-mod-integrationtests/withhugotoml" 13 -- go.mod -- 14 module foo 15 go 1.20 16 require ( 17 github.com/gohugoio/hugo-mod-integrationtests/withhugotoml v1.1.0 // indirect 18 github.com/gohugoio/hugo-mod-integrationtests/commonmod v0.0.0-20230823103305-919cefe8a425 // indirect 19 ) 20