summaryrefslogtreecommitdiffstats
path: root/utils/agljobtemplate.py
diff options
context:
space:
mode:
Diffstat (limited to 'utils/agljobtemplate.py')
-rw-r--r--utils/agljobtemplate.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py
index 0ecd0b5..a74b7a6 100644
--- a/utils/agljobtemplate.py
+++ b/utils/agljobtemplate.py
@@ -119,6 +119,10 @@ class Agljobtemplate(object):
url_fragment = ''
if (build_type == 'ci'):
url_fragment += changeid + '/' + patchset + '/'
+ elif (build_type == 'snapshot' or build_type == 'weekly' or build_type == 'daily') and (not vcs_branch and not version):
+ vcs_branch = 'master'
+ version = 'latest'
+ url_fragment += vcs_branch + '/' + version + '/'
else:
url_fragment += vcs_branch + '/' + version + '/'