mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Minor changes from Nick code review
This commit is contained in:
committed by
David Glasser
parent
2db2392b10
commit
ee1d36adc3
@@ -1,5 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
### Build a tarball for each smart package, which will later be put on
|
||||
### warehouse.meteor.com. Compute a version for each package by
|
||||
### hashing its contents. Prepare the packages part of a release
|
||||
### manifest with each package's version.
|
||||
###
|
||||
### At the moment smart packages don't support binary dependencies so
|
||||
### we don't have to build on different architectures. At some point
|
||||
### this will change, at which we'll use an approach similar to what
|
||||
### we do for engines.
|
||||
|
||||
set -e
|
||||
|
||||
# cd to top level dir
|
||||
@@ -18,7 +28,7 @@ fi
|
||||
|
||||
FIRST_RUN=true # keep track to place commas correctly
|
||||
cd packages
|
||||
for PACKAGE in `ls`
|
||||
for PACKAGE in *
|
||||
do
|
||||
if [ -a "$PACKAGE/package.js" ]; then
|
||||
if [ $FIRST_RUN == false ]; then
|
||||
|
||||
Reference in New Issue
Block a user