Try to fix inconsistent release manifest generation

Apparently on some platforms "a5" < "a-" and on others
"a-" < "a5"
This commit is contained in:
Avital Oliver
2013-12-16 16:03:48 -08:00
committed by David Glasser
parent b71d938f9d
commit 91c4d3d8a2

View File

@@ -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