Skip to content

Commit

Permalink
Merge pull request #441 from brave/copy_midl_only_on_windows
Browse files Browse the repository at this point in the history
Copy midl files only on Windows
  • Loading branch information
bbondy committed Jul 3, 2018
2 parents e71fc40 + e771d7a commit 33d610e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ const util = {
buildTarget: (options = config.defaultOptions) => {
console.log('building ' + config.buildTarget + '...')

util.updateOmahaMidlFiles()
if (process.platform === 'win32') util.updateOmahaMidlFiles()

const args = util.buildArgsToString(config.buildArgs())
util.run('gn', ['gen', config.outputDir, '--args="' + args + '"'], options)
Expand Down

0 comments on commit 33d610e

Please sign in to comment.