From: Richard Purdie Date: Fri, 16 Jan 2026 11:59:06 +0000 (+0000) Subject: scripts/oe-git-archive: Ensure new push parameter is specified X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=983cb2171e53564bc9dd188136439f3e2ad9e188;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git scripts/oe-git-archive: Ensure new push parameter is specified Fixes a regresion in "oeqa/gitarchive: Fix git push URL parameter" due to a missing parameter. Signed-off-by: Richard Purdie --- diff --git a/scripts/oe-git-archive b/scripts/oe-git-archive index 9305ed0b0f..9484fc53c7 100755 --- a/scripts/oe-git-archive +++ b/scripts/oe-git-archive @@ -106,7 +106,7 @@ def main(argv=None): gitarchive.gitarchive(args.data_dir, args.git_dir, args.no_create, args.bare, args.commit_msg_subject.strip(), args.commit_msg_body, args.branch_name, args.no_tag, args.tag_name, args.tag_msg_subject, args.tag_msg_body, - args.exclude, args.notes, args.push, keywords, log) + args.exclude, args.notes, bool(args.push), args.push, keywords, log) except gitarchive.ArchiveError as err: log.error(str(err))