Repository: thrift Updated Branches: refs/heads/master d8bb0e3b9 -> 3c5544023
THRIFT-4019: Dart Makefiles should also clean pubspec.lock Client: Dart Patch: Mark Erickson <[email protected]> This closes #1150 Project: http://git-wip-us.apache.org/repos/asf/thrift/repo Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/3c554402 Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/3c554402 Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/3c554402 Branch: refs/heads/master Commit: 3c55440230f3645816913d9c53b42dcc16b70f95 Parents: d8bb0e3 Author: Mark Erickson <[email protected]> Authored: Wed Jan 4 10:11:06 2017 -0600 Committer: Mark Erickson <[email protected]> Committed: Wed Jan 4 10:11:06 2017 -0600 ---------------------------------------------------------------------- lib/dart/Makefile.am | 1 + test/dart/Makefile.am | 1 + tutorial/dart/Makefile.am | 1 + 3 files changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/thrift/blob/3c554402/lib/dart/Makefile.am ---------------------------------------------------------------------- diff --git a/lib/dart/Makefile.am b/lib/dart/Makefile.am index a6e4556..910db50 100644 --- a/lib/dart/Makefile.am +++ b/lib/dart/Makefile.am @@ -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 http://git-wip-us.apache.org/repos/asf/thrift/blob/3c554402/test/dart/Makefile.am ---------------------------------------------------------------------- diff --git a/test/dart/Makefile.am b/test/dart/Makefile.am index 6f97de9..e274771 100644 --- a/test/dart/Makefile.am +++ b/test/dart/Makefile.am @@ -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 http://git-wip-us.apache.org/repos/asf/thrift/blob/3c554402/tutorial/dart/Makefile.am ---------------------------------------------------------------------- diff --git a/tutorial/dart/Makefile.am b/tutorial/dart/Makefile.am index ccca598..438e457 100644 --- a/tutorial/dart/Makefile.am +++ b/tutorial/dart/Makefile.am @@ -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
