From a5ab7e11567a68fa46eebf25f0e3d6a66039f15f Mon Sep 17 00:00:00 2001 From: Ross Smith II Date: Mon, 11 Sep 2023 08:26:50 -0700 Subject: [PATCH 1/2] docs(building): Fix cd command on Windows `/d` is required if you are on a different drive. --- dev/building.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/building.rst b/dev/building.rst index 9f4269500..11222b535 100644 --- a/dev/building.rst +++ b/dev/building.rst @@ -79,7 +79,7 @@ Building (Windows) # Pick a place for your Syncthing source. > md "%USERPROFILE%\dev" - > cd "%USERPROFILE%\dev" + > cd /D "%USERPROFILE%\dev" # Grab the code. > git clone https://github.com/syncthing/syncthing.git From 51ae7611b98896c1af3bf00f844f55f6d7b501db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Colomb?= Date: Mon, 11 Sep 2023 21:17:39 +0200 Subject: [PATCH 2/2] Update dev/building.rst Co-authored-by: tomasz1986 --- dev/building.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev/building.rst b/dev/building.rst index 11222b535..e66111631 100644 --- a/dev/building.rst +++ b/dev/building.rst @@ -79,7 +79,7 @@ Building (Windows) # Pick a place for your Syncthing source. > md "%USERPROFILE%\dev" - > cd /D "%USERPROFILE%\dev" + > cd /d "%USERPROFILE%\dev" # Grab the code. > git clone https://github.com/syncthing/syncthing.git