mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Fix license in mbc iit
This commit is contained in:
parent
f548e17c80
commit
3068245b1f
@ -76,7 +76,7 @@ class VersionValidator(ClickValidator):
|
||||
|
||||
|
||||
def spdx(val: str) -> str:
|
||||
if spdxlib.valid(val):
|
||||
if not spdxlib.valid(val):
|
||||
raise click.BadParameter(f"{val} is not a valid SPDX license identifier")
|
||||
return val
|
||||
|
||||
|
@ -57,8 +57,9 @@ def init(name: str, id: str, version: Version, license: str, config: bool) -> No
|
||||
main_class=main_class)
|
||||
with open("maubot.yaml", "w") as file:
|
||||
file.write(meta)
|
||||
with open("LICENSE", "w") as file:
|
||||
file.write(spdx.get(license)["text"])
|
||||
if license:
|
||||
with open("LICENSE", "w") as file:
|
||||
file.write(spdx.get(license)["text"])
|
||||
if not os.path.isdir(name):
|
||||
os.mkdir(name)
|
||||
mod = mod_template.render(config=config, name=main_class)
|
||||
|
Loading…
Reference in New Issue
Block a user