Escape '\' char in netci.groovy
This commit is contained in:
parent
b2c3ef484f
commit
a5599d8390
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ def static getBuildJobName(def configuration, def os) {
|
||||||
// Calculate the build command
|
// Calculate the build command
|
||||||
if (os == 'Windows_NT') {
|
if (os == 'Windows_NT') {
|
||||||
// On Windows we build the mscorlibs too.
|
// On Windows we build the mscorlibs too.
|
||||||
buildCommand = ".\scripts\ci_build.cmd ${lowerConfiguration}"
|
buildCommand = ".\\scripts\\ci_build.cmd ${lowerConfiguration}"
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// On other OS's we skipmscorlib but run the pal tests
|
// On other OS's we skipmscorlib but run the pal tests
|
||||||
|
|
Loading…
Reference in a new issue