From 91c4d3d8a2a50b6476dd026505da96e6485988ba Mon Sep 17 00:00:00 2001 From: Avital Oliver Date: Mon, 16 Dec 2013 16:03:48 -0800 Subject: [PATCH] Try to fix inconsistent release manifest generation Apparently on some platforms "a5" < "a-" and on others "a-" < "a5" --- scripts/admin/build-package-tarballs.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/admin/build-package-tarballs.sh b/scripts/admin/build-package-tarballs.sh index 39c5b4a490..76e663810d 100755 --- a/scripts/admin/build-package-tarballs.sh +++ b/scripts/admin/build-package-tarballs.sh @@ -41,7 +41,8 @@ fi FIRST_RUN=true # keep track to place commas correctly cd packages -for PACKAGE in * +SORTED_PACKAGE_LIST=$(LC_ALL=C ls .) # Ensure consistent order between platforms +for PACKAGE in "$SORTED_PACKAGE_LIST" do if [ -a "$PACKAGE/package.js" ]; then if [ $FIRST_RUN == false ]; then