diff --git a/src/commander/commander.ts b/src/commander/commander.ts index 5daf935..fb85fb0 100644 --- a/src/commander/commander.ts +++ b/src/commander/commander.ts @@ -23,6 +23,8 @@ program .option('--baselineBranch ', 'Mark this build baseline') .option('--baselineBuild ', 'Mark this build baseline') .option('--githubURL ', 'GitHub URL including commitId') + .option('--userName ', 'Specify the LT username') + .option('--accessKey ', 'Specify the LT accesskey') .addCommand(exec) .addCommand(capture) .addCommand(configWeb) diff --git a/src/commander/exec.ts b/src/commander/exec.ts index 8807616..8d94ab0 100644 --- a/src/commander/exec.ts +++ b/src/commander/exec.ts @@ -24,8 +24,6 @@ command .option('--fetch-results [filename]', 'Fetch results and optionally specify an output file, e.g., .json') .option('--buildName ', 'Specify the build name') .option('--scheduled ', 'Specify the schedule ID') - .option('--userName ', 'Specify the LT username') - .option('--accessKey ', 'Specify the LT accesskey') .option('--show-render-errors', 'Show render errors from SmartUI build') .action(async function(execCommand, _, command) { const options = command.optsWithGlobals();