Skip to content

Commit

Permalink
fix: update allowed build environment values
Browse files Browse the repository at this point in the history
  • Loading branch information
seppzer0 committed Apr 27, 2024
1 parent 9b27afe commit 1e2cf7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builder/configs/argument.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class ArgumentConfig(BaseModel):
"""Variable storage for use across the app.
:param Literal["docker","podman"] benv: Build environment.
:param Literal["docker","podman","local"] benv: Build environment.
:param Literal["kernel","assets","bundle"] command: Builder command to be launched.
:param str codename: Device codename.
:param str base: Kernel source base.
Expand All @@ -25,7 +25,7 @@ class ArgumentConfig(BaseModel):
:param Optional[bool]=False ksu: Flag indicating KernelSU support.
"""

benv: Literal["docker", "podman"]
benv: Literal["docker", "podman", "local"]
command: Literal["kernel", "assets", "bundle"]
codename: str
base: str
Expand Down

0 comments on commit 1e2cf7f

Please sign in to comment.