Skip to content

Commit

Permalink
Run clean -all instead of just -b (dotnet#14978)
Browse files Browse the repository at this point in the history
  • Loading branch information
karajas committed Nov 10, 2017
1 parent 9528e67 commit c0853dc
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion buildpipeline/DotNet-CoreClr-Trusted-Linux-Crossbuild.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"inputs": {
"filename": "docker",
"arguments": "run --rm $(DockerCommonRunArgs) ./clean.sh",
"arguments": "run --rm $(DockerCommonRunArgs) ./clean.sh -all",
"workingFolder": "",
"failOnStandardError": "false"
}
Expand Down
2 changes: 1 addition & 1 deletion buildpipeline/DotNet-CoreClr-Trusted-Linux.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
},
"inputs": {
"filename": "docker",
"arguments": "run --rm $(DockerCommonRunArgs) ./clean.sh",
"arguments": "run --rm $(DockerCommonRunArgs) ./clean.sh -all",
"workingFolder": "",
"failOnStandardError": "false"
}
Expand Down
2 changes: 1 addition & 1 deletion buildpipeline/DotNet-CoreClr-Trusted-Mac.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"definitionType": "task"
},
"inputs": {
"filename": "$(Agent.BuildDirectory)/s/clean.sh",
"filename": "$(Agent.BuildDirectory)/s/clean.sh -all",
"arguments": "",
"workingFolder": "",
"failOnStandardError": "false"
Expand Down
2 changes: 1 addition & 1 deletion buildpipeline/DotNet-CoreClr-Trusted-Windows-x86.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"inputs": {
"filename": "clean.cmd",
"arguments": "",
"arguments": "-all",
"workingFolder": "",
"failOnStandardError": "false"
}
Expand Down
2 changes: 1 addition & 1 deletion buildpipeline/DotNet-CoreClr-Trusted-Windows.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
},
"inputs": {
"filename": "clean.cmd",
"arguments": "",
"arguments": "-all",
"workingFolder": "",
"failOnStandardError": "false"
}
Expand Down
2 changes: 1 addition & 1 deletion buildpipeline/Dotnet-CoreClr-Trusted-BuildTests.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
},
"inputs": {
"filename": "clean.cmd",
"arguments": "",
"arguments": "-all",
"workingFolder": "",
"failOnStandardError": "false"
}
Expand Down

0 comments on commit c0853dc

Please sign in to comment.