From 1417589630a6acb5b1d765aaceb3be26ed66f03a Mon Sep 17 00:00:00 2001 From: RichardG867 Date: Sun, 14 Nov 2021 14:45:56 -0300 Subject: [PATCH] Fix repository in Jenkinsfile --- .ci/Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/Jenkinsfile b/.ci/Jenkinsfile index 5243d4d6b..43a554705 100644 --- a/.ci/Jenkinsfile +++ b/.ci/Jenkinsfile @@ -32,7 +32,7 @@ def gitClone() { println "[-] Building git tag [${env.GIT_COMMIT}]" def scmVars = checkout scm: [$class: 'GitSCM', branches: [[name: env.GIT_COMMIT]], - userRemoteConfigs: [[url: 'https://github.com/richardg867/86Box.git']]] + userRemoteConfigs: [[url: 'https://github.com/86Box/86Box.git']]] env.GIT_COMMIT = scmVars.GIT_COMMIT }