Skip to content

Commit

Permalink
fix(core): usage of MSBuildProjectDirRelativePath should handle paths…
Browse files Browse the repository at this point in the history
… with white space
  • Loading branch information
remkoboschker authored and AgentEnder committed Nov 11, 2022
1 parent 042a9db commit a939c4b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<NodeModulesRelativePath>$([MSBuild]::MakeRelative($(MSBuildProjectDirectory), $(RepoRoot)))</NodeModulesRelativePath>
</PropertyGroup>
<Target Name="CheckNxModuleBoundaries" BeforeTargets="Build">
<Exec Command="node $(NodeModulesRelativePath)/<%= checkModuleBoundariesScriptPath %> --project-root $(MSBuildProjectDirRelativePath)"/>
<Exec Command="node $(NodeModulesRelativePath)/<%= checkModuleBoundariesScriptPath %> --project-root '$(MSBuildProjectDirRelativePath)'"/>
</Target>
</Project>

0 comments on commit a939c4b

Please sign in to comment.