use a filename for the magic unbundle file that will end up in the apk

Reviewed By: martinbigio

Differential Revision: D2774022

fb-gh-sync-id: 5ccafe606e586c55213a10e00013c6feecc9dbcd
This commit is contained in:
David Aurelio 2015-12-22 09:58:31 -08:00 committed by facebook-github-bot-3
parent 935cbb76c0
commit c866a0a6d0
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ const Promise = require('promise');
const writeFile = require('../writeFile');
const writeSourceMap = require('./write-sourcemap');
const MAGIC_UNBUNDLE_NUMBER = require('./magic-number');
const MAGIC_UNBUNDLE_FILENAME = '.unbundle';
const MAGIC_UNBUNDLE_FILENAME = 'UNBUNDLE'; // must not start with a dot, as that won't go into the apk
const MODULES_DIR = 'js-modules';
/**