Skip to content

Commit

Permalink
Fix miscellaneous bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
kemmerle committed Dec 12, 2024
1 parent a8858bd commit bb01414
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion commands/fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ exports.handler = async options => {
const { derivedAccountId } = options;
const cmsPublishMode = getCmsPublishMode(options);

trackCommandUsage('fetch', { mode: cmsPublishMode }, accountId);
trackCommandUsage('fetch', { mode: cmsPublishMode }, derivedAccountId);

try {
// Fetch and write file/folder.
Expand Down
1 change: 0 additions & 1 deletion lib/commonOpts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ export function addUseEnvironmentOptions(yargs: Argv): Argv {
.option('use-env', {
describe: i18n(`${i18nKey}.options.useEnv.describe`),
type: 'boolean',
default: false,
})
.conflicts('use-env', 'account');
}
Expand Down

0 comments on commit bb01414

Please sign in to comment.