forked from Mirror/pmbootstrap
See: https://gitlab.com/postmarketOS/pmbootstrap/-/issues/2324 Closes: https://gitlab.com/postmarketOS/pmbootstrap/-/merge_requests/2278
14 lines
287 B
Python
14 lines
287 B
Python
# Copyright 2024 Caleb Connolly
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import annotations
|
|
from pmb import commands
|
|
import pmb.build.other
|
|
|
|
|
|
class Index(commands.Command):
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run(self):
|
|
pmb.build.other.index_repo()
|