From b233985feacb6a869e491e28474faa936dc07538 Mon Sep 17 00:00:00 2001 From: IWANABETHATGUY <974153916@qq.com> Date: Wed, 24 Mar 2021 05:04:51 +0800 Subject: [PATCH] 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 --- docs/getting_started/setup_your_environment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/getting_started/setup_your_environment.md b/docs/getting_started/setup_your_environment.md index 552849e2f2..58b4a906c3 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 ```