mirror of
https://gitlab.postmarketos.org/postmarketOS/pmbootstrap.git
synced 2025-07-12 19:09:56 +03:00
14 lines
303 B
Python
14 lines
303 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) -> None:
|
|
pass
|
|
|
|
def run(self) -> None:
|
|
pmb.build.other.index_repo()
|