From 2de90d7176ef5b5e41d05541d47d94f0a79caee1 Mon Sep 17 00:00:00 2001 From: Christian Poessinger Date: Sun, 22 Sep 2019 19:15:34 +0200 Subject: Jenkins: fix httpURI in isCustomBuild() --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c48136b34..5ff6bcb65 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,7 +30,7 @@ def getGitRepoURL() { def isCustomBuild() { // GitHub organisation base URL def gitURI = 'git@github.com:vyos/' + env.JOB_NAME - def httpURI = 'https://github.com/vyos' + env.JOB_NAME + def httpURI = 'https://github.com/vyos/' + env.JOB_NAME return ! ((getGitRepoURL() == gitURI) || (getGitRepoURL() == httpURI)) } -- cgit v1.2.3