THRIFT-4019: Dart Makefiles should also clean pubspec.lock

Client: Dart
Patch: Mark Erickson <merickson@apache.org>

This closes #1150
This commit is contained in:
Mark Erickson 2017-01-04 10:11:06 -06:00
parent d8bb0e3b9f
commit 3c55440230
3 changed files with 3 additions and 0 deletions

View File

@ -24,5 +24,6 @@ clean-local:
$(RM) -r .pub
find . -type d -name "packages" | xargs $(RM) -r
find . -type f -name ".packages" | xargs $(RM)
find . -type f -name "pubspec.lock" | xargs $(RM)
check-local: all

View File

@ -38,6 +38,7 @@ clean-local:
$(RM) -r gen-dart test_client/.pub
find . -type d -name "packages" | xargs $(RM) -r
find . -type f -name ".packages" | xargs $(RM)
find . -type f -name "pubspec.lock" | xargs $(RM)
client: stubs
${DART} test_client/bin/main.dart

View File

@ -30,6 +30,7 @@ clean-local:
$(RM) -r gen-*
find . -type d -name "packages" | xargs $(RM) -r
find . -type f -name ".packages" | xargs $(RM)
find . -type f -name "pubspec.lock" | xargs $(RM)
pub-get: pub-get-gen pub-get-client pub-get-console-client pub-get-server