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

github.com/webtorrent/webtorrent.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-02-07 12:46:22 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-02-07 12:46:22 +0400
commit4127928419e7a98fcd56ae737bf2c2dd1ebd6d65 (patch)
tree7b2466a1094241cad1658dc9bc0ead276cef02c2 /bin/post-build.js
parentc18204a9bea3e50b193979875a8047e7a5a26ef9 (diff)
Initial UI (close #25)
h/t Transmission - you guys are awesome!
Diffstat (limited to 'bin/post-build.js')
-rwxr-xr-xbin/post-build.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/bin/post-build.js b/bin/post-build.js
new file mode 100755
index 0000000..f415d76
--- /dev/null
+++ b/bin/post-build.js
@@ -0,0 +1,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
+}) \ No newline at end of file