We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa38991 commit 44b8313Copy full SHA for 44b8313
scripts/start.js
@@ -136,9 +136,8 @@ function openBrowser(port) {
136
// on OS X Google Chrome with AppleScript
137
execSync('ps cax | grep "Google Chrome"');
138
execSync(
139
- 'osascript ' +
140
- path.resolve(__dirname, './utils/chrome.applescript') +
141
- ' http://localhost:' + port + '/'
+ 'osascript chrome.applescript http://localhost:' + port + '/',
+ {cwd: path.join(__dirname, 'utils'), stdio: 'ignore'}
142
);
143
return;
144
} catch (err) {
0 commit comments