diff options
| author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-06-26 12:14:52 +0200 |
|---|---|---|
| committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-06-26 12:14:52 +0200 |
| commit | e4eb48cc7ed258618a287beedd0dd7441c701bde (patch) | |
| tree | 403727a8b76805ac3243c66708fe5d5cf22b50b4 | |
| parent | 51cdb9b0c449f69488ce951b955c635a5eb8f329 (diff) | |
| download | Project-Tick-e4eb48cc7ed258618a287beedd0dd7441c701bde.tar.gz Project-Tick-e4eb48cc7ed258618a287beedd0dd7441c701bde.zip | |
feat: support osx-arm64 and linux-arm64
| -rw-r--r-- | meta/model/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/model/__init__.py b/meta/model/__init__.py index 15004b9674..81fbf0ad82 100644 --- a/meta/model/__init__.py +++ b/meta/model/__init__.py @@ -181,7 +181,7 @@ class MojangLibraryDownloads(MetaBase): class OSRule(MetaBase): @validator("name") def name_must_be_os(cls, v): - assert v in ["osx", "linux", "windows"] + assert v in ["osx", "linux", "windows", "osx-arm64", "linux-arm64"] return v name: str |
