From a506f020b2462925c65eabcc6d8ff9798cce9942 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Mon, 3 Oct 2022 08:47:07 -0400 Subject: [PATCH] changed_crates: output crates in toposort order. --- maint/changed_crates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maint/changed_crates b/maint/changed_crates index 33d13a029..0d425d8c5 100755 --- a/maint/changed_crates +++ b/maint/changed_crates @@ -11,7 +11,7 @@ if [ -z "$TAG" ]; then exit 1 fi -for crate in $(cd "${TOP}/crates/" && ls); do +for crate in $("${TOP}/maint/list_crates"); do if git diff --quiet "$TAG..HEAD" "${TOP}/crates/${crate}"; then # echo "$crate: ...:" :