diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-09-22 19:15:34 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2019-09-22 19:15:47 +0200 |
commit | c8d11ef3f77d90dcb880d9c3a11e0ccee7494b30 (patch) | |
tree | 30950a5f4a1847f7d4acf7edbd6643a89608ed37 | |
parent | 79a655a12875f5f152abba2d17eb6a1033b59131 (diff) | |
download | vyos-1x-c8d11ef3f77d90dcb880d9c3a11e0ccee7494b30.tar.gz vyos-1x-c8d11ef3f77d90dcb880d9c3a11e0ccee7494b30.zip |
Jenkins: fix httpURI in isCustomBuild()
(cherry picked from commit 2de90d7176ef5b5e41d05541d47d94f0a79caee1)
-rw-r--r-- | Jenkinsfile | 2 |
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)) } |