Pass in platform argument in offline building

Summary: how did this ever work?
All build jobs must pass in the platform argument.
This also turns the "platform" argument into a required one.

I added a task to infer the platform argument from the filename here: t8306875

Reviewed By: @martinbigio

Differential Revision: D2425114
This commit is contained in:
Amjad Masad 2015-09-09 11:13:50 -07:00 committed by facebook-github-bot-0
parent ef080b699d
commit 68fb275c78
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ const bundleOpts = declareOpts({
},
platform: {
type: 'string',
required: false,
required: true,
}
});