Merge pull request #4743 from eugenp/fix-makefile

clean only generated files
This commit is contained in:
Loredana Crusoveanu 2018-07-18 21:24:01 +03:00 committed by GitHub
commit 660579058f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -85,4 +85,4 @@ add-client:
clean:
# Remove generated artifacts
find . ! -name Makefile -type f -exec rm -f {} \;
find . \( -name "$(CLIENTNAME)*" -o -name "$(HOSTNAME)*" -o -name "$(KEYSTORE)" -o -name "$(TRUSTSTORE)" -o -name ca.crt \) -type f -exec rm -f {} \;