From fa3876ce36c082d952b2d1b1aa7f6fd616e4f49f Mon Sep 17 00:00:00 2001 From: Kevin K Date: Wed, 22 Mar 2017 20:16:12 -0400 Subject: [PATCH] chore(justfile): sorts the contributors by commits --- justfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index d7eb63da..e9385c6b 100644 --- a/justfile +++ b/justfile @@ -2,10 +2,13 @@ echo 'Removing old CONTRIBUTORS.md' mv CONTRIBUTORS.md CONTRIBUTORS.md.bak echo 'Downloading a list of new contributors' - echo "The following is a list of contributors in alphabetical order:" > CONTRIBUTORS.md + echo "the following is a list of contributors:" > CONTRIBUTORS.md echo "" >> CONTRIBUTORS.md echo "" >> CONTRIBUTORS.md - githubcontrib --owner kbknapp --repo clap-rs --sha master --cols 6 --format md --showlogin true --sortBy login >> CONTRIBUTORS.md + githubcontrib --owner kbknapp --repo clap-rs --sha master --cols 6 --format md --showlogin true --sortBy contributions --sortOrder desc >> CONTRIBUTORS.md + echo "" >> CONTRIBUTORS.md + echo "" >> CONTRIBUTORS.md + echo "This list was generated by [mgechev/github-contributors-list](https://github.com/mgechev/github-contributors-list)" >> CONTRIBUTORS.md rm CONTRIBUTORS.md.bak run-test TEST: