summaryrefslogtreecommitdiffstats
path: root/docs/content/en/commands/hugo_mod_get.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/commands/hugo_mod_get.md')
-rw-r--r--docs/content/en/commands/hugo_mod_get.md7
1 files changed, 6 insertions, 1 deletions
diff --git a/docs/content/en/commands/hugo_mod_get.md b/docs/content/en/commands/hugo_mod_get.md
index 784e81f44..f4803d723 100644
--- a/docs/content/en/commands/hugo_mod_get.md
+++ b/docs/content/en/commands/hugo_mod_get.md
@@ -22,7 +22,12 @@ Install a specific version:
hugo mod get github.com/gohugoio/testshortcodes@v0.3.0
-Install the latest versions of all module dependencies:
+Install the latest versions of all direct module dependencies:
+
+ hugo mod get
+ hugo mod get ./... (recursive)
+
+Install the latest versions of all module dependencies (direct and indirect):
hugo mod get -u
hugo mod get -u ./... (recursive)