Skip to content

Commit

Permalink
feat: use verbose when in repair mode
Browse files Browse the repository at this point in the history
  • Loading branch information
psychedelicious committed Jan 23, 2025
1 parent bcedec2 commit 0455373
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/main/install-manager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ export class InstallManager {
'--python-preference',
'only-managed',
'--reinstall',
'--verbose',
];

this.log.info('Reinstalling Python...\r\n');
Expand Down Expand Up @@ -255,6 +256,10 @@ export class InstallManager {
venvPath,
];

if (repair) {
createVenvArgs.push('--verbose');
}

this.log.info('Creating virtual environment...\r\n');
this.log.info(`> ${uvPath} ${createVenvArgs.join(' ')}\r\n`);

Expand Down

0 comments on commit 0455373

Please sign in to comment.