We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c92118d commit 5a36dc2Copy full SHA for 5a36dc2
scripts/packages/package-check.sh
@@ -259,11 +259,11 @@ prepare_packages() {
259
260
echo
261
echo "Prepared packages for Azure:"
262
- find "${PKG_DIR}/azure" -type f | grep "${VERSION}" | sed "s|${PKG_DIR}/azure/||"
+ find "${PKG_DIR}/azure" -type f | grep "${VERSION}" | sed "s|${PKG_DIR}/azure/||" | sort
263
264
265
echo "Prepared packages for GitHub Release v${VERSION}:"
266
- find "${PKG_DIR}" -type f | grep "${VERSION}" | grep -v "/azure/" | awk -F/ '{print $NF}'
+ find "${PKG_DIR}" -type f | grep "${VERSION}" | grep -v "/azure/" | awk -F/ '{print $NF}' | sort
267
}
268
269
create_tarball() {
0 commit comments