diff options
-rw-r--r-- | .dockerignore | 1 | ||||
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Makefile | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/.dockerignore b/.dockerignore index d2d289e0..1860f9f4 100644 --- a/.dockerignore +++ b/.dockerignore @@ -10,5 +10,6 @@ /.git/ /v*.tar.gz /*.pkg.tar.xz +/*.pkg.tar.zst /*.egg-info /*kvmd-*.tar.gz @@ -12,6 +12,7 @@ /testenv/run/*.pid /v*.tar.gz /*.pkg.tar.xz +/*.pkg.tar.zst /*.egg-info /*kvmd-*.tar.gz *.pyc @@ -134,7 +134,7 @@ push: clean: - rm -rf testenv/run/*.{pid,sock} build site dist pkg src v*.tar.gz *.pkg.tar.xz *.egg-info kvmd-*.tar.gz + rm -rf testenv/run/*.{pid,sock} build site dist pkg src v*.tar.gz *.pkg.tar.{xz,zst} *.egg-info kvmd-*.tar.gz find kvmd testenv/tests -name __pycache__ | xargs rm -rf make -C hid clean |