From a9f1743ba62a3ab55b71021f522c65e37f0d841d Mon Sep 17 00:00:00 2001 From: Terts Diepraam Date: Sat, 21 Jan 2023 12:13:34 +0100 Subject: [PATCH] util: fix publish order of uucore_procs and uucore --- util/publish.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/publish.sh b/util/publish.sh index f4fe105f50..d9039fa606 100755 --- a/util/publish.sh +++ b/util/publish.sh @@ -35,7 +35,7 @@ TOTAL_ORDER=$(echo -e $PARTIAL_ORDER | tsort | tac) TOTAL_ORDER=${TOTAL_ORDER#ROOT} set -e -for dir in src/uucore/ src/uucore_procs/ src/uu/stdbuf/src/libstdbuf/; do +for dir in src/uucore_procs/ src/uucore/ src/uu/stdbuf/src/libstdbuf/; do ( cd "$dir" #shellcheck disable=SC2086