| // Copyright 2016 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| var childProcess = require('child_process'); |
| var path = require('path'); |
| var shell = require('child_process').execSync; |
| repoRootPath = shellOutput('git rev-parse --show-toplevel'); |
| console.log('ERROR: cannot use dtrun outside of chromium repo'); |
| var devtoolsPath = path.join(repoRootPath, 'third_party', 'devtools-frontend', 'src'); |
| if (!isDir(devtoolsPath)) { |
| console.log('ERROR: cannot use dtrun outside of chromium repo'); |
| var npmPath = shellOutput('which npm'); |
| if (process.argv.length > 2) { |
| args.push(process.argv[2]); |
| args = args.concat(process.argv.slice(3)); |
| var child = childProcess.spawn(npmPath, args, { |
| function shellOutput(command) { |
| return shell(command).toString().trim(); |
| return fs.statSync(path).isDirectory(); |