summaryrefslogtreecommitdiffstats
path: root/content/en/getting-started
diff options
context:
space:
mode:
Diffstat (limited to 'content/en/getting-started')
-rw-r--r--content/en/getting-started/installing.md6
-rw-r--r--content/en/getting-started/quick-start.md2
2 files changed, 7 insertions, 1 deletions
diff --git a/content/en/getting-started/installing.md b/content/en/getting-started/installing.md
index a17eebf52..bffbb777e 100644
--- a/content/en/getting-started/installing.md
+++ b/content/en/getting-started/installing.md
@@ -72,6 +72,12 @@ If you are on a Windows machine and use [Chocolatey][] for package management, y
choco install hugo -confirm
{{< /code >}}
+Or if you need the “extended” Sass/SCSS version:
+
+{{< code file="install-extended-with-chocolatey.ps1" >}}
+choco install hugo-extended -confirm
+{{< /code >}}
+
### Scoop (Windows)
If you are on a Windows machine and use [Scoop][] for package management, you can install Hugo with the following one-liner:
diff --git a/content/en/getting-started/quick-start.md b/content/en/getting-started/quick-start.md
index 6d444d4a3..143dc0a41 100644
--- a/content/en/getting-started/quick-start.md
+++ b/content/en/getting-started/quick-start.md
@@ -176,7 +176,7 @@ For theme specific configuration options, see the [theme site](https://github.co
It is simple. Just call:
```
-hugo
+hugo -D
```
Output will be in `./public/` directory by default (`-d`/`--destination` flag to change it, or set `publishdir` in the config file).