Skip to content

Commit 5a36dc2

Browse files
committed
[skip ci] sort list when displaying packages
1 parent c92118d commit 5a36dc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/packages/package-check.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,11 +259,11 @@ prepare_packages() {
259259

260260
echo
261261
echo "Prepared packages for Azure:"
262-
find "${PKG_DIR}/azure" -type f | grep "${VERSION}" | sed "s|${PKG_DIR}/azure/||"
262+
find "${PKG_DIR}/azure" -type f | grep "${VERSION}" | sed "s|${PKG_DIR}/azure/||" | sort
263263

264264
echo
265265
echo "Prepared packages for GitHub Release v${VERSION}:"
266-
find "${PKG_DIR}" -type f | grep "${VERSION}" | grep -v "/azure/" | awk -F/ '{print $NF}'
266+
find "${PKG_DIR}" -type f | grep "${VERSION}" | grep -v "/azure/" | awk -F/ '{print $NF}' | sort
267267
}
268268

269269
create_tarball() {

0 commit comments

Comments
 (0)