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 82fe8ba commit 3a00e78Copy full SHA for 3a00e78
bin/cli.js
@@ -4,10 +4,10 @@
4
const { gatherTelemetryForUrl, analyzeEmberObject } = require('ember-codemods-telemetry-helpers');
5
6
(async () => {
7
- let args = process.argv.slice(2);
+ let args = process.argv.slice(1);
8
if (process.env['NO_TELEMETRY'] !== 'true') {
9
await gatherTelemetryForUrl(process.argv[2], analyzeEmberObject);
10
- args = process.argv.slice(1);
+ args = process.argv.slice(2);
11
}
12
13
require('codemod-cli').runTransform(__dirname, 'ember-object', args);
0 commit comments