hugo_mod_verify.md (1509B)
1 --- 2 title: "hugo mod verify" 3 slug: hugo_mod_verify 4 url: /commands/hugo_mod_verify/ 5 --- 6 ## hugo mod verify 7 8 Verify dependencies. 9 10 ### Synopsis 11 12 Verify checks that the dependencies of the current module, which are stored in a local downloaded source cache, have not been modified since being downloaded. 13 14 15 ``` 16 hugo mod verify [flags] 17 ``` 18 19 ### Options 20 21 ``` 22 --clean delete module cache for dependencies that fail verification 23 -h, --help help for verify 24 ``` 25 26 ### Options inherited from parent commands 27 28 ``` 29 --clock string set the clock used by Hugo, e.g. --clock 2021-11-06T22:30:00.00+09:00 30 --config string config file (default is path/config.yaml|json|toml) 31 --configDir string config dir (default "config") 32 --debug debug output 33 -e, --environment string build environment 34 --ignoreVendorPaths string ignores any _vendor for module paths matching the given Glob pattern 35 --log enable Logging 36 --logFile string log File path (if set, logging enabled automatically) 37 --quiet build in quiet mode 38 -s, --source string filesystem path to read files relative from 39 --themesDir string filesystem path to themes directory 40 -v, --verbose verbose output 41 --verboseLog verbose logging 42 ``` 43 44 ### SEE ALSO 45 46 * [hugo mod](/commands/hugo_mod/) - Various Hugo Modules helpers. 47