Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the accessibility of the project for linux users. #40

Merged
merged 1 commit into from Mar 7, 2014
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file or symbol
Failed to load files and symbols.

Always

Just for now

Improve the accessibility of the project for linux users.

  • Loading branch information
cagedwisdom
cagedwisdom committed Mar 6, 2014
commit 59fa43dee003ed4b7ae16742bfd0d1e5543d431c
@@ -2,7 +2,7 @@

var cp = require('child_process')

var BIN = '/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary'
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)
@@ -11,4 +11,4 @@ var child = cp.spawn(BIN, ARGS)
process.once('SIGUSR2', function () {
child.kill()
process.kill(process.pid, 'SIGUSR2')
})
})
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.