Jenkins: Second dummy commit to test new webhook flow

This commit is contained in:
richardg867 2022-07-15 20:39:18 -03:00 committed by GitHub
parent a8be5d1f18
commit e9af11d9d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
.ci/Jenkinsfile vendored
View file

@ -130,7 +130,7 @@ def gitClone(repository, branch) {
def removeDir(dir) {
if (isUnix())
return sh(returnStatus: true, script: "rm -rf \"$dir\"")
return sh(returnStatus: true, script: "rm -rf '$dir'")
else
return bat(returnStatus: true, script: "rd /s /q \"$dir\"")
}