From 94496b69f9b3204b7cb121d73ff2f57fe11819e9 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sat, 27 Mar 2021 21:44:26 +0100 Subject: [PATCH] docs bugfix --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d7c1c66..28aeda2 100644 --- a/README.md +++ b/README.md @@ -159,15 +159,17 @@ Save it as c:\temp\install-git.txt Execute the Git setup: ```dos -software\git-setup.exe /LOADINF=c:\temp\install-git.txt /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS +cd /D %USERPROFILE%\Downloads +git-setup.exe /LOADINF=c:\temp\install-git.txt /NORESTART /NOCANCEL /SILENT /SUPPRESSMSGBOXES /CLOSEAPPLICATIONS +cd .. ``` Cleanup: ```dos del /S /Q /A c:\temp\install-git.txt 1>nul - ``` + ## 2.4 Modify system PATH You need to extend your PATH variable with the following directories: @@ -176,14 +178,12 @@ You need to extend your PATH variable with the following directories: %TOOLS% %TOOLS%\git\bin %TOOLS%\git\usr\bin - ``` Or (in case you are fine with our path settings) execute: ```dos set PATH=%SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%LOCALAPPDATA%\Microsoft\WindowsApps;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin setx PATH %SYSTEMROOT%;%SYSTEMROOT%\system32;%SYSTEMROOT%\system32\wbem;%SYSTEMROOT%\system32\WindowsPowerShell\v1.0;%LOCALAPPDATA%\Microsoft\WindowsApps;%TOOLS%;%TOOLS%\git\bin;%TOOLS%\git\usr\bin - ```