From 78ddbd331a9a38ef4ed5c5ca8a41d57e5958657a Mon Sep 17 00:00:00 2001 From: Slava Kim Date: Thu, 11 Dec 2014 17:34:15 -0800 Subject: [PATCH] Add fake records for windows dev_bundles on warehouse --- tools/bundler.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/bundler.js b/tools/bundler.js index ead6c81776..8e54cf22ee 100644 --- a/tools/bundler.js +++ b/tools/bundler.js @@ -1705,7 +1705,11 @@ _.extend(ServerTarget.prototype, { var archToPlatform = { 'os.linux.x86_32': 'Linux_i686', 'os.linux.x86_64': 'Linux_x86_64', - 'os.osx.x86_64': 'Darwin_x86_64' + 'os.osx.x86_64': 'Darwin_x86_64', + // XXX once we put Windows dev_bundles to warehouse we should fill these + // fields in. + 'os.windows.x86_32': 'XXX', + 'os.windows.x86_64': 'XXX' }; var platform = archToPlatform[self.arch]; if (! platform) {