mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Try to fix inconsistent release manifest generation
Apparently on some platforms "a5" < "a-" and on others "a-" < "a5"
This commit is contained in:
committed by
David Glasser
parent
b71d938f9d
commit
91c4d3d8a2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user