Skip to content
Snippets Groups Projects
Commit f67e9096 authored by Romain Bouvier's avatar Romain Bouvier
Browse files

Add xfce projects urls

parent 4820c476
No related branches found
No related tags found
No related merge requests found
......@@ -353,6 +353,8 @@ def options():
$user_namespace/$bugzilla_product will be used")
parser.add_argument('--fdo', action='store_true',
help="import for freedesktop.org rather than GNOME")
parser.add_argument('--xfce', action='store_true',
help="import for xfce.org rather than GNOME")
return parser.parse_args()
......@@ -385,6 +387,15 @@ def main():
giturl = "https://anongit.freedesktop.org/git/"
instance = "freedesktop.org"
bzresolution = 'MOVED'
elif args.xfce:
if args.production:
glurl = "https://gitlab.xfce.org/"
else:
glurl = "http://localhost:8080/"
bzurl = "https://bugzilla.xfce.org"
giturl = "https://git.xfce.org/"
instance = "xfce.org"
bzresolution = 'MOVED'
else:
if args.production:
glurl = "https://gitlab.gnome.org/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment