summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIWANABETHATGUY <974153916@qq.com>2021-03-24 05:04:51 +0800
committerGitHub <noreply@github.com>2021-03-23 17:04:51 -0400
commitb233985feacb6a869e491e28474faa936dc07538 (patch)
treedd34a315fff0a87ad120185bfae8d2249a30f922
parent137744d19cc5c3a3eab06cbd362e8be4b3d84482 (diff)
Update setup_your_environment.md (#9876)
unlike other system config file, in windows `$profile` file is a common config file of powershell , just use `>` will override the user config file , which is terrible. This change use append instead of override which is more reasonable
-rw-r--r--docs/getting_started/setup_your_environment.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/getting_started/setup_your_environment.md b/docs/getting_started/setup_your_environment.md
index 552849e2f..58b4a906c 100644
--- a/docs/getting_started/setup_your_environment.md
+++ b/docs/getting_started/setup_your_environment.md
@@ -69,7 +69,7 @@ command will be `antigen bundle deno` and so on.
Example (Powershell):
```shell
-deno completions powershell > $profile
+deno completions powershell >> $profile
.$profile
```