From 4a8044ae5c687cdf7fe5d8b3b03c8b7a95bf6cee Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Thu, 29 Apr 2021 08:38:43 -0400 Subject: [PATCH] Link to Zulip search for finding the most recent check-in --- ci/check-in.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/check-in.sh b/ci/check-in.sh index 323b75d67..4477789c7 100755 --- a/ci/check-in.sh +++ b/ci/check-in.sh @@ -5,7 +5,10 @@ set -eu # This is not a very smart script if [ $# != 2 ]; then echo "usage: $0 " - if [ $# = 1 ] ; then + if [ $# = 0 ]; then + echo "help: you can find the last check-in at" \ + "https://rust-lang.zulipchat.com/#narrow/stream/238009-t-compiler.2Fmeetings/search/wg-rustc-dev-guide" + elif [ $# = 1 ] ; then echo "help: you can find the number of PRs merged at" \ "https://github.com/rust-lang/rustc-dev-guide/pulls?q=is%3Apr+is%3Amerged+updated%3A%3E$1" fi