diff --git a/fern/docs/pages/manual/settings.mdx b/fern/docs/pages/manual/settings.mdx index 7f55cbfb0..a73da808a 100644 --- a/fern/docs/pages/manual/settings.mdx +++ b/fern/docs/pages/manual/settings.mdx @@ -30,10 +30,15 @@ For example, on **linux and macOS**, this gives: export PGPT_PROFILES=my_profile_name_here ``` -Windows Powershell(s) have a different syntax, one of them being: +Windows Command Prompt (cmd) has a different syntax: ```shell set PGPT_PROFILES=my_profile_name_here ``` + +Windows Powershell has a different syntax: +```shell +$env:PGPT_PROFILES="my_profile_name_here" +``` If the above is not working, you might want to try other ways to set an env variable in your window's terminal. ---