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:34 +0200 |
commit | 2de90d7176ef5b5e41d05541d47d94f0a79caee1 (patch) | |
tree | 56805473cd10c3b9be99a6371bee5cfa913a8f2b | |
parent | 2b9c84594a693c66b949183a25cc32dfcdee72e1 (diff) | |
download | vyos-1x-2de90d7176ef5b5e41d05541d47d94f0a79caee1.tar.gz vyos-1x-2de90d7176ef5b5e41d05541d47d94f0a79caee1.zip |
Jenkins: fix httpURI in isCustomBuild()
-rw-r--r-- | Jenkinsfile | 2 |
1 files changed, 1 insertions, 1 deletions
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)) } |