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 14:45:58 -07:00
committed by facebook-github-bot-0
parent 89b7bd4e5e
commit cd4e8a9fae
+1 -1
View File
@@ -92,7 +92,7 @@ const bundleOpts = declareOpts({
},
platform: {
type: 'string',
required: false,
required: true,
}
});