Пример #1
0
def check():
    print("Information: https://hacs.xyz/docs/publish/include#check-images")
    if get_category() not in ["plugin", "theme"]:
        print("Only plugin and theme are checked.")
        return

    info = get_info()
    if "<img" in info or "![" in info:
        print("Has image(s)")
        return

    exit("::error::There should be images to show the user what they get.")
Пример #2
0
def check():
    if get_category() not in ["plugin", "theme"]:
        print("Only plugin and theme are checked.")
        return

    info = get_info()
    if "<img" in info or "![" in info:
        print("Has image(s)")
        return

    print("There should be images to show the user what they get.")
    exit(1)
Пример #3
0
def check():
    print("Information: https://hacs.xyz/docs/publish/include#check-info")
    info = get_info()
    if not info:
        exit("::error::No information provided.")
Пример #4
0
def check():
    info = get_info()
    if not info:
        print("No information provided.")
        exit(1)