mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 02:45:22 +00:00
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:
parent
d8bb0e3b9f
commit
3c55440230
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user