From 53601c8abd8f92a3af08fbde7a039aa91deef63a Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Wed, 28 Jan 2026 12:16:38 +0100 Subject: [PATCH] jw.pkg.cmds.projects.CmdListRepos: Remove test code Remove --insecure from curl invocation on janware.test. Signed-off-by: Jan Lindemann --- src/python/jw/pkg/cmds/projects/CmdListRepos.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/python/jw/pkg/cmds/projects/CmdListRepos.py b/src/python/jw/pkg/cmds/projects/CmdListRepos.py index 6cc5c6ff..ef5114be 100644 --- a/src/python/jw/pkg/cmds/projects/CmdListRepos.py +++ b/src/python/jw/pkg/cmds/projects/CmdListRepos.py @@ -62,8 +62,6 @@ class CmdListRepos(Cmd): # export if re.match(r'https://', args.base_url): # assume Forgejo Backend curl_args = ['-f'] - if re.match(r'https://janware.test', args.base_url): - curl_args.append('--insecure') if password is not None: assert username is not None cmd_input = (f'-u {username}:{password}').encode('utf-8')