summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 5c4d66c..6497dae 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -9,8 +9,7 @@ def scmInstance = scm.getUserRemoteConfigs()[0]
9MANIFEST_REPOSITORY = scmInstance.getUrl() 9MANIFEST_REPOSITORY = scmInstance.getUrl()
10def git_repo = MANIFEST_REPOSITORY.trim().split('/')[-1] 10def git_repo = MANIFEST_REPOSITORY.trim().split('/')[-1]
11def git_repo_name = git_repo.replace('.git','') 11def git_repo_name = git_repo.replace('.git','')
12def profile = git_repo_name.split('-')[-1] 12env.PROFILE = git_repo_name.split('-')[-1]
13env.PROFILE = profile
14 13
15print "MANIFEST_REPOSITORY: " + MANIFEST_REPOSITORY 14print "MANIFEST_REPOSITORY: " + MANIFEST_REPOSITORY
16print "git_repo_name: " + git_repo_name 15print "git_repo_name: " + git_repo_name