diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-13 19:14:23 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-13 19:14:23 +0300 |
commit | 0fa3ad2c007d1ea90694f73754ccac8c42dcdf93 (patch) | |
tree | 2133c45f56693878fc7b4c00a9005469eb78bd77 /project/ci/github/cmake.py | |
parent | setup.cfg: fix package name (diff) | |
download | cmake-common-0fa3ad2c007d1ea90694f73754ccac8c42dcdf93.tar.gz cmake-common-0fa3ad2c007d1ea90694f73754ccac8c42dcdf93.zip |
remove excessive logging & obsolete project.ci.* packages
Logging command line arguments before parsing them is a bit excessive.
Diffstat (limited to 'project/ci/github/cmake.py')
-rw-r--r-- | project/ci/github/cmake.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/project/ci/github/cmake.py b/project/ci/github/cmake.py deleted file mode 100644 index 9b9c7b9..0000000 --- a/project/ci/github/cmake.py +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright (c) 2019 Egor Tensin <Egor.Tensin@gmail.com> -# This file is part of the "cmake-common" project. -# For details, see https://github.com/egor-tensin/cmake-common. -# Distributed under the MIT License. - -from project.ci.cmake import build_ci -from project.ci.dirs import GitHub -from project.utils import setup_logging - - -def main(argv=None): - with setup_logging(): - build_ci(GitHub(), argv) - - -if __name__ == '__main__': - main() |