File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 119
119
120
120
<Message Text =" ============ Building $(RepositoryToBuild) ============" Importance =" High" />
121
121
122
+ <!-- Remove final slash in $(BuildRepositoryRoot) to avoid problems due to KoreBuild adding one on Windows. -->
122
123
<Exec
123
- Command =" ./$(_BuildScriptToExecute) -Path $(BuildRepositoryRoot) $(BuildArguments)"
124
+ Command =" ./$(_BuildScriptToExecute) -Path $(BuildRepositoryRoot.TrimEnd('\\') ) $(BuildArguments)"
124
125
IgnoreStandardErrorWarningFormat =" true"
125
126
WorkingDirectory =" $(RepositoryRoot)"
126
127
IgnoreExitCode =" true"
163
164
164
165
<Message Text =" ============ Testing $(RepositoryToBuild) ============" Importance =" High" />
165
166
167
+ <!-- Remove final slash in $(BuildRepositoryRoot) to avoid problems due to KoreBuild adding one on Windows. -->
166
168
<Exec Condition =" '$(SkipTestsDueToMissingSharedFx)' != 'true' "
167
- Command =" ./$(_BuildScriptToExecute) -Path $(BuildRepositoryRoot) $(BuildArguments)"
169
+ Command =" ./$(_BuildScriptToExecute) -Path $(BuildRepositoryRoot.TrimEnd('\\') ) $(BuildArguments)"
168
170
IgnoreStandardErrorWarningFormat =" true"
169
171
WorkingDirectory =" $(RepositoryRoot)"
170
172
IgnoreExitCode =" true" >
You can’t perform that action at this time.
0 commit comments