Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
INT-2369 Do not display "No change was made from codemod" if codemod …
Browse files Browse the repository at this point in the history
…was halted
  • Loading branch information
hbjORbj committed Jan 2, 2024
1 parent 723f02b commit 263f954
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/components/engineService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -838,8 +838,11 @@ export class EngineService {
);

commands.executeCommand('intuitaMainView.focus');

if (!this.#execution.affectedAnyFile) {

if (
!this.#execution.halted &&
!this.#execution.affectedAnyFile
) {
window.showWarningMessage(Messages.noAffectedFiles);
}
}
Expand Down

0 comments on commit 263f954

Please sign in to comment.