Welcome to mirror list, hosted at ThFree Co, Russian Federation.

post-build.js « bin - github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f415d76c8755189f01c763feff510d23ee59c3fc (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env node

var cp = require('child_process')
var path = require('path')

var rootPath = path.join(__dirname, '..')
cp.exec('cp -r node_modules/font-awesome chrome/', { cwd: rootPath }, function (err) {
  if (err) throw err
})