Skip to content

Commit b9132c4

Browse files
author
Kelly Selden
committed
add debug log to ember command
1 parent 6298d60 commit b9132c4

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/ember-install-addon.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
const execa = require('execa');
44
const semver = require('semver');
5+
const debug = require('debug')('ember-cli-update');
56

67
// not fixed yet
78
// https://github.com/ember-cli/ember-cli/issues/8937
@@ -11,6 +12,8 @@ function ember(args, {
1112
cwd,
1213
stdin = 'inherit'
1314
}) {
15+
debug(`ember ${args.join(' ')}`);
16+
1417
let ps = execa('ember', args, {
1518
cwd,
1619
preferLocal: true,

0 commit comments

Comments
 (0)