Skip to content

Commit

Permalink
Merge pull request #79 from jkrup/rewrite-v2
Browse files Browse the repository at this point in the history
fixed incorrect split size
  • Loading branch information
jkrup committed Oct 26, 2017
2 parents f5dafe4 + dd4d6b4 commit 46dadef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/files.js
Expand Up @@ -15,7 +15,7 @@ export const deletePath = path => del(path, { force: true });
export const splitBuild = async () => {
logger.debug('splitting bundle');
try {
await splitFile.splitFileBySize(`${meteorNowBuildPath}/${tarFileName}`, 99999);
await splitFile.splitFileBySize(`${meteorNowBuildPath}/${tarFileName}`, 999999);
} catch (e) {
logger.error(e);
}
Expand Down

0 comments on commit 46dadef

Please sign in to comment.