Fix bad copypaste in Jenkins pipeline

This commit is contained in:
RichardG867
2021-11-13 14:06:49 -03:00
parent e8881f6f25
commit 941a1b20cf

2
.ci/Jenkinsfile vendored
View File

@@ -22,7 +22,7 @@ def gitClone() {
println "[-] Building git tag [${env.GIT_COMMIT}]"
def scmVars = checkout scm: [$class: 'GitSCM',
branches: [[name: env.GIT_COMMIT]],
userRemoteConfigs: [[url: 'http://git-server/user/repository.git']]]
userRemoteConfigs: [[url: 'https://github.com/richardg867/86Box.git']]]
env.GIT_COMMIT = scmVars.GIT_COMMIT
}