From 5a912a7fa14538808782929fa155572f8f2a121d Mon Sep 17 00:00:00 2001 From: Sylvestre Ledru Date: Mon, 9 Mar 2026 22:18:09 +0100 Subject: [PATCH] adjust the publish script to ship src/uu/checksum_common --- util/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/publish.sh b/util/publish.sh index 7c02f6d8d..356eb3692 100755 --- a/util/publish.sh +++ b/util/publish.sh @@ -27,7 +27,7 @@ is_already_published() { PROGS=$(ls -1d src/uu/*/) PARTIAL_ORDER="" for p in $PROGS; do - DEPENDENCIES=$(grep -oE "^uu_[a-z0-9]+" ${p}Cargo.toml) + DEPENDENCIES=$(grep -oE "^uu_[a-z0-9_]+" ${p}Cargo.toml) # Turn "src/uu/util/" into "util" p=${p#src/uu/}