Skip to content

Commit 1575e9a

Browse files
authored
#1626: fix infinity loop (#1627)
1 parent a09d4a2 commit 1575e9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/src/main/java/com/devonfw/tools/ide/tool/IdeasyCommandlet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ protected ToolInstallation doInstall(ToolInstallRequest request) {
124124
this.context.warning("You are using IDEasy version {} which indicates local development - skipping upgrade.", version);
125125
return toolAlreadyInstalled(request);
126126
}
127-
return super.install(request);
127+
return super.doInstall(request);
128128
}
129129

130130
/**

0 commit comments

Comments
 (0)