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 8244b7d commit cb9ef48Copy full SHA for cb9ef48
cmds/analyze.js
@@ -220,7 +220,7 @@ const argValidation = {
220
//Returns an error or undefined in no error
221
function validateClientDataArgs(argv) {
222
for (let arg of Object.keys(argValidation)) {
223
- if (argv[argv]) {
+ if (argv[arg]) {
224
const spec = argValidation[arg];
225
226
if (spec.requiresOne && !spec.requiresOne.some(r => argv[r])) {
0 commit comments