Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Commit

Permalink
update comments on gridfs
Browse files Browse the repository at this point in the history
  • Loading branch information
Morten Henriksen committed May 22, 2015
1 parent 30bf8e6 commit 970179c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions publish.js
Expand Up @@ -25,6 +25,18 @@ var packageList = [
'upload-http'
];

// List of binary packages
var binaryPackages = [
'gridfs'
];

// Archs we want to build for
var buildForArchs = [
'os.osx.x86_64',
'os.linux.x86_64',
'os.linux.x86_32',
];

// We may not publish from within a Meteor app - so we workaround this by
// moving the .meteor folder to a temp location while publishing.
var tempfolder = 'packages/.tempQA';
Expand Down Expand Up @@ -91,6 +103,19 @@ queue.push(function() {
});
});


// XXX: https://www.meteor.com/services/build We need to build binary packages
// for each arch - binaryPackages
//
// # OS X
// meteor admin get-machine os.osx.x86_64

// # Linux on 64-bit Intel
// meteor admin get-machine os.linux.x86_64

// # Linux on 32-bit Intel
// meteor admin get-machine os.linux.x86_32

// Report done
queue.push(function() {
console.log('----');
Expand Down

0 comments on commit 970179c

Please sign in to comment.