summaryrefslogtreecommitdiff
path: root/cli/__init__.py
blob: c6f8f27a55a419ef80525ff8366c2a4854296468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import os

from .base import cli

from .build import build

__all__ = [cli, build]

# ugly workaround to avoid build failures in Python 3.8
if "NETLIFY" not in os.environ:
    from .clean import clean
    from .ghpr import ghpr
    from .scan import scan

    __all__ += [clean, ghpr, scan]