From 72f346715ab7f2075360cb7e79dfca2060f848d1 Mon Sep 17 00:00:00 2001 From: Priyesh Date: Thu, 1 Feb 2018 04:28:27 -0800 Subject: [PATCH] minor cmd fix document mentions "navigate to src directory and run the following". from there, $(pwd) will include src so removing extra src. --- docs/building/internals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/building/internals.md b/docs/building/internals.md index 9880df8dd99..e9b88df5b3f 100644 --- a/docs/building/internals.md +++ b/docs/building/internals.md @@ -86,7 +86,7 @@ cat > $targetFile <<-"EOF" EOF -dotnet msbuild Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj /t:_GetDependencies "/property:DesignTimeBuild=true;_DependencyFile=$(pwd)/src/TypeCatalogGen/powershell.inc" /nologo +dotnet msbuild Microsoft.PowerShell.SDK/Microsoft.PowerShell.SDK.csproj /t:_GetDependencies "/property:DesignTimeBuild=true;_DependencyFile=$(pwd)/TypeCatalogGen/powershell.inc" /nologo ``` `powershell.inc` contains the resolved paths to the DLLs of each dependency of PowerShell,