diff options
-rw-r--r-- | utils/agljobtemplate.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/utils/agljobtemplate.py b/utils/agljobtemplate.py index 3c69832..0ecd0b5 100644 --- a/utils/agljobtemplate.py +++ b/utils/agljobtemplate.py @@ -123,11 +123,13 @@ class Agljobtemplate(object): url_fragment += vcs_branch + '/' + version + '/' machine_frag_url = machine + build_name = machine if (machine == 'm3ulcb'): - machine_frag_url = machine + '-nogfx' + build_name = machine + '-nogfx' if machine == "upsquare": machine_frag_url = "intel-corei7-64" - url_fragment += machine_frag_url + build_name = "intel-corei7-64" + url_fragment += build_name if (build_type != 'ci'): url_fragment += '/deploy/images/' + machine_frag_url |