fix make clean command (#16823)

This commit is contained in:
Jirka Borovec 2023-02-21 16:01:30 +01:00 committed by GitHub
parent b30a43f783
commit 0009cde1db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -26,7 +26,9 @@ clean:
rm -rf dist rm -rf dist
rm -rf *.egg-info rm -rf *.egg-info
rm -rf src/*.egg-info rm -rf src/*.egg-info
rm -rf src/lightning/*/ rm -rf src/lightning_app/*/
rm -rf src/lightning_fabric/*/
rm -rf src/pytorch_lightning/*/
test: clean test: clean
# Review the CONTRIBUTING documentation for other ways to test. # Review the CONTRIBUTING documentation for other ways to test.