summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-09-22 19:15:34 +0200
committerChristian Poessinger <christian@poessinger.com>2019-09-22 19:15:47 +0200
commitc8d11ef3f77d90dcb880d9c3a11e0ccee7494b30 (patch)
tree30950a5f4a1847f7d4acf7edbd6643a89608ed37 /Jenkinsfile
parent79a655a12875f5f152abba2d17eb6a1033b59131 (diff)
downloadvyos-1x-c8d11ef3f77d90dcb880d9c3a11e0ccee7494b30.tar.gz
vyos-1x-c8d11ef3f77d90dcb880d9c3a11e0ccee7494b30.zip
Jenkins: fix httpURI in isCustomBuild()
(cherry picked from commit 2de90d7176ef5b5e41d05541d47d94f0a79caee1)
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index e254a2dca..61700662a 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))
}