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
path: root/bin
diff options
context:
space:
mode:
authorFeross Aboukhadijeh <feross@feross.org>2014-03-28 10:30:05 +0400
committerFeross Aboukhadijeh <feross@feross.org>2014-04-17 10:24:44 +0400
commitbd63bfa40c5f29d70e3795b236b9c343bef66297 (patch)
tree9d434185ba280273cea8db26418be9e399ee9fd5 /bin
parent7ec1c54272278f88a2adce81f1e714a251051e22 (diff)
move chrome app stuff to webtorrent-chrome
Diffstat (limited to 'bin')
-rwxr-xr-xbin/cmd.js1
-rwxr-xr-xbin/post-build.js9
-rwxr-xr-xbin/start.js10
3 files changed, 1 insertions, 19 deletions
diff --git a/bin/cmd.js b/bin/cmd.js
new file mode 100755
index 0000000..ab0c014
--- /dev/null
+++ b/bin/cmd.js
@@ -0,0 +1 @@
+// \ No newline at end of file
diff --git a/bin/post-build.js b/bin/post-build.js
deleted file mode 100755
index f415d76..0000000
--- a/bin/post-build.js
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/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
diff --git a/bin/start.js b/bin/start.js
deleted file mode 100755
index 3aef9bf..0000000
--- a/bin/start.js
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/env node
-
-var cp = require('child_process')
-
-var BIN = process.platform === 'linux'
- ? '/bin/google-chrome'
- : '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'
-var ARGS = ['--load-and-launch-app=chrome']
-
-var child = cp.spawn(BIN, ARGS)