From 7c5604b82ef0b356377265a9b9b0d4635756452b Mon Sep 17 00:00:00 2001 From: martinzrrl <117370069+martinzrrl@users.noreply.github.com> Date: Mon, 29 Apr 2024 17:04:52 +0200 Subject: [PATCH 1/2] Update settings.mdx --- fern/docs/pages/manual/settings.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fern/docs/pages/manual/settings.mdx b/fern/docs/pages/manual/settings.mdx index 7f55cbfb0..e00d58b7c 100644 --- a/fern/docs/pages/manual/settings.mdx +++ b/fern/docs/pages/manual/settings.mdx @@ -30,9 +30,9 @@ 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 Powershell has a different syntax: ```shell -set PGPT_PROFILES=my_profile_name_here +$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. From f9e650d765c23f6d5102cfb1524bfd5ece594b67 Mon Sep 17 00:00:00 2001 From: Javier Martinez Date: Mon, 8 Jul 2024 12:17:34 +0200 Subject: [PATCH 2/2] docs: add cmd --- fern/docs/pages/manual/settings.mdx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/fern/docs/pages/manual/settings.mdx b/fern/docs/pages/manual/settings.mdx index e00d58b7c..a73da808a 100644 --- a/fern/docs/pages/manual/settings.mdx +++ b/fern/docs/pages/manual/settings.mdx @@ -30,6 +30,11 @@ For example, on **linux and macOS**, this gives: export PGPT_PROFILES=my_profile_name_here ``` +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"