Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a122556
WIP Commit
areinicke Apr 27, 2026
c497948
Update logic
areinicke Apr 28, 2026
54a1fed
Removed --code option & Added further functionality
areinicke Apr 30, 2026
90e43e7
Fix tests
areinicke Apr 30, 2026
5dba7b5
Merge branch 'main' into feature/1695-clone-settings-to-temp-dir-for-…
areinicke Apr 30, 2026
aa751ff
Update comments
areinicke Apr 30, 2026
b19c6eb
Merge branch 'feature/1695-clone-settings-to-temp-dir-for-verificatio…
areinicke Apr 30, 2026
3e936dc
formatting cleanup
areinicke Apr 30, 2026
9bee5f1
Minor code refactor
areinicke Apr 30, 2026
29f6d1f
Update comments
areinicke Apr 30, 2026
8b69339
Update changelog
areinicke Apr 30, 2026
d1bfbf5
Add test case for invalid repository
areinicke Apr 30, 2026
64f1220
Replace hard coded variables
areinicke Apr 30, 2026
462d6d5
Fix tests
areinicke Apr 30, 2026
373fc19
Apply suggestion from @satorus
areinicke Apr 30, 2026
2552b4d
Move long if checks to own functions
areinicke Apr 30, 2026
d32fc4b
changed variable name to adhere to coding conventions
areinicke Apr 30, 2026
154ff6c
renamed method to follow coding conventions
areinicke Apr 30, 2026
6ce1e46
Merge branch 'main' into feature/1695-clone-settings-to-temp-dir-for-…
hohwille May 17, 2026
fcc2a0b
Step 1 Refactor
areinicke May 19, 2026
900c0f2
Merge branch 'main' into feature/1695-clone-settings-to-temp-dir-for-…
hohwille May 22, 2026
45d35be
Finish Step 1 Refactor
areinicke May 26, 2026
9cfd047
Merge branch 'feature/1695-clone-settings-to-temp-dir-for-verificatio…
areinicke May 26, 2026
0e82a26
Fixed temp location not being fully empty after projectr creation
areinicke May 26, 2026
777b997
Removed references to --code option in project creation
areinicke May 28, 2026
b5e23a7
Merge branch 'main' into feature/1695-clone-settings-to-temp-dir-for-…
areinicke Jul 7, 2026
36018b1
Remove ProjectNameConvention reference
areinicke Jul 7, 2026
94c6511
Merge branch 'main' into feature/1695-clone-settings-to-temp-dir-for-…
hohwille Jul 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ Release with new features and bugfixes:
* https://github.com/devonfw/IDEasy/issues/1788[#1788]: Add Commandlet to create links
* https://github.com/devonfw/IDEasy/issues/797[#797]: Use system unzip on macOS to preserve symlinks in ZIP extraction
* https://github.com/devonfw/IDEasy/issues/1723[#1723]: Add commandlet for GitHub Copilot CLI
* https://github.com/devonfw/IDEasy/issues/1695[#1695]: Clone settings to temporary directory, analyse, and then move
* https://github.com/devonfw/IDEasy/issues/1880[#1880]: Reinstall all plugins for IDE in force mode
* https://github.com/devonfw/IDEasy/issues/861[#861]: Fix install of pgadmin throws IllegalStateException when the install wizard starts
* https://github.com/devonfw/IDEasy/issues/1844[#1844]: VSCode plugin installation progress freezing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.devonfw.tools.ide.cli.CliException;
import com.devonfw.tools.ide.context.AbstractIdeContext;
import com.devonfw.tools.ide.context.IdeContext;
import com.devonfw.tools.ide.context.IdeStartContextImpl;
Expand Down Expand Up @@ -107,6 +106,8 @@ protected void doRun() {
createStartScripts();
}



Comment on lines +109 to +110

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change

private void reloadContext() {

((AbstractIdeContext) this.context).reload();
Expand Down Expand Up @@ -192,7 +193,6 @@ private void updateSettingsInStep(boolean codeRepository) {
this.context.getFileAccess().backup(settingsPath);
}
GitUrl gitUrl = getOrAskSettingsUrl();
checkProjectNameConvention(gitUrl.getProjectName());
initializeRepository(gitUrl);
return;
}
Expand All @@ -210,17 +210,10 @@ private GitUrl getOrAskSettingsUrl() {

String repository = this.settingsRepo.getValue();
repository = handleDefaultRepository(repository);
String userPromt;
String defaultUrl;
if (isCodeRepository()) {
userPromt = "Code repository URL:";
defaultUrl = null;
LOG.info(MESSAGE_CODE_REPO_URL);
} else {
userPromt = "Settings URL [" + IdeContext.DEFAULT_SETTINGS_REPO_URL + "]:";
defaultUrl = IdeContext.DEFAULT_SETTINGS_REPO_URL;
LOG.info(MESSAGE_SETTINGS_REPO_URL, this.context.getSettingsPath());
}
String userPromt = "Repository URL [" + IdeContext.DEFAULT_SETTINGS_REPO_URL + "]:";
String defaultUrl = IdeContext.DEFAULT_SETTINGS_REPO_URL;
LOG.info(MESSAGE_SETTINGS_REPO_URL, this.context.getSettingsPath());
Comment thread
areinicke marked this conversation as resolved.

GitUrl gitUrl = null;
if (repository != null) {
gitUrl = GitUrl.of(repository);
Expand All @@ -238,57 +231,18 @@ private GitUrl getOrAskSettingsUrl() {

private String handleDefaultRepository(String repository) {
if ("-".equals(repository)) {
if (isCodeRepository()) {
LOG.warn("'-' is found after '--code'. This is invalid.");
repository = null;
} else {
LOG.info("'-' was found for settings repository, the default settings repository '{}' will be used.", IdeContext.DEFAULT_SETTINGS_REPO_URL);
repository = IdeContext.DEFAULT_SETTINGS_REPO_URL;
}
LOG.info("'-' was found for the repository, the default settings repository '{}' will be used.", IdeContext.DEFAULT_SETTINGS_REPO_URL);
repository = IdeContext.DEFAULT_SETTINGS_REPO_URL;
}
return repository;
}

private void checkProjectNameConvention(String projectName) {
boolean isSettingsRepo = projectName.contains(IdeContext.SETTINGS_REPOSITORY_KEYWORD);
boolean codeRepository = isCodeRepository();
if (isSettingsRepo == codeRepository) {
String warningTemplate;
if (codeRepository) {
warningTemplate = """
Your git URL is pointing to the project name {} that contains the keyword '{}'.
Therefore we assume that you did a mistake by adding the '--code' option to the ide project creation.
Do you really want to create the project?""";
} else {
warningTemplate = """
Your git URL is pointing to the project name {} that does not contain the keyword ''{}''.
Therefore we assume that you forgot to add the '--code' option to the ide project creation.
Do you really want to create the project?""";
}
this.context.askToContinue(warningTemplate, projectName, IdeContext.SETTINGS_REPOSITORY_KEYWORD);
}
}

private void initializeRepository(GitUrl gitUrl) {

GitContext gitContext = this.context.getGitContext();
Path settingsPath = this.context.getSettingsPath();
Path repoPath = settingsPath;
boolean codeRepository = isCodeRepository();
if (codeRepository) {
// clone the given code repository into IDE_HOME/workspaces/main
repoPath = context.getWorkspacePath().resolve(gitUrl.getProjectName());
}
gitContext.pullOrClone(gitUrl, repoPath);
if (codeRepository) {
// check for settings folder and create symlink to IDE_HOME/settings
Path settingsFolder = repoPath.resolve(IdeContext.FOLDER_SETTINGS);
if (Files.exists(settingsFolder)) {
context.getFileAccess().symlink(settingsFolder, settingsPath);
} else {
throw new CliException("Invalid code repository " + gitUrl + ": missing a settings folder at " + settingsFolder);
}
}
this.context.getGitContext().saveCurrentCommitId(settingsPath, this.context.getSettingsCommitIdPath());
}

Expand Down Expand Up @@ -446,14 +400,4 @@ private void createStartScript(String ide, String workspace) {
fileAccess.writeFileContent(scriptContent, scriptPath);
fileAccess.makeExecutable(scriptPath);
}

/**
* Judge if the repository is a code repository.
*
* @return true when the repository is a code repository, otherwise false.
*/
protected boolean isCodeRepository() {
return false;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,18 @@

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
import java.util.function.Predicate;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.devonfw.tools.ide.cli.CliException;
import com.devonfw.tools.ide.context.IdeContext;
import com.devonfw.tools.ide.environment.EnvironmentVariables;
import com.devonfw.tools.ide.git.GitUrl;
import com.devonfw.tools.ide.io.FileAccess;
import com.devonfw.tools.ide.io.FileCopyMode;
import com.devonfw.tools.ide.log.IdeLogLevel;
import com.devonfw.tools.ide.property.FlagProperty;
import com.devonfw.tools.ide.property.StringProperty;
Expand All @@ -24,9 +29,6 @@ public class CreateCommandlet extends AbstractUpdateCommandlet {
/** {@link StringProperty} for the name of the new project */
public final StringProperty newProject;

/** {@link FlagProperty} for creating a project with settings inside a code repository */
public final FlagProperty codeRepositoryFlag;

/**
* The constructor.
*
Expand All @@ -36,7 +38,6 @@ public CreateCommandlet(IdeContext context) {

super(context);
this.newProject = add(new StringProperty("", true, "project"));
this.codeRepositoryFlag = add(new FlagProperty("--code"));
add(this.settingsRepo);
}

Expand All @@ -57,16 +58,15 @@ protected void doRun() {

String newProjectName = this.newProject.getValue();
Path newProjectPath = this.context.getIdeRoot().resolve(newProjectName);
Path tempProjectPath = this.context.getIdeRoot().resolve("_ide/tmp/projects").resolve(newProjectName);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
Path tempProjectPath = this.context.getIdeRoot().resolve("_ide/tmp/projects").resolve(newProjectName);
Path tempProjectPath = this.context.getTempPath().resolve(IdeContext.FOLDER_PROJECTS).resolve(newProjectName);


LOG.info("Creating new IDEasy project in {}", newProjectPath);
if (!this.context.getFileAccess().isEmptyDir(newProjectPath)) {

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IMHO we should also check the final target project folder for existence.
If we call ide create IDEasy - but $IDE_ROOT/IDEasy already exists, do we want to create a new IDEasy project in tmp folder and then populate everything in order to then fail when we want to move the project?
If the target project already exists, we should not create at all and fail. The user can then call ide update on the target project or he can do rm -rf «project» if the project is totally broken and he wants to recreate it.

this.context.askToContinue("Directory {} already exists. Do you want to continue?", newProjectPath);
} else {
this.context.getFileAccess().mkdirs(newProjectPath);
}

initializeProject(newProjectPath);
this.context.setIdeHome(newProjectPath);
initializeProject(tempProjectPath);
this.context.setIdeHome(tempProjectPath);
super.doRun();
this.context.getFileAccess().writeFileContent(IdeVersion.getVersionString(), newProjectPath.resolve(IdeContext.FILE_SOFTWARE_VERSION));
IdeLogLevel.SUCCESS.log(LOG, "Successfully created new project '{}'.", newProjectName);
Expand All @@ -83,14 +83,91 @@ private void initializeProject(Path newInstancePath) {
}

@Override
protected boolean isCodeRepository() {
return this.codeRepositoryFlag.isTrue();
protected void updateSettings() {
super.updateSettings();
analyzeProject();
}

/**
* This method is invoked when a new porject is created. It analyzes the cloned repository to check if it is a valid IDEasy repository.
* The repository can either be a settings repository (with ide.properties or devon.properties on the top level)
* or a code repository (with a settings folder on the top level containing such a file). Otherwise, the project creation fails and an error message is logged.
*/
private void analyzeProject() {
// Settings repository: ide.properties on top levels (or devon.properties for legacy users)
// Code repository: settings folder on top level with ide.properties inside (or devon.properties for legacy users)
String projectName = this.context.getProjectName();
Path actualProjectPath = this.context.getIdeRoot().resolve(projectName);
FileAccess fileAccess = this.context.getFileAccess();
Path settingsPath = this.context.getSettingsPath();

// Check whether the repository is a valid settings repository, code repository, or neither
if (isSettingsRepository(settingsPath)) {
LOG.info("The repository seems to be a settings repository based on the presence of " + EnvironmentVariables.DEFAULT_PROPERTIES + " or " + EnvironmentVariables.LEGACY_PROPERTIES + " on the top level.");
moveProject(this.context.getIdeHome(), actualProjectPath);

} else if (isCodeRepository(settingsPath)) {
LOG.info(EnvironmentVariables.DEFAULT_PROPERTIES + " or " + EnvironmentVariables.LEGACY_PROPERTIES + " found in settings subfolder. This indicates a code repository with a settings folder on the top level.");

String gitProjectName = GitUrl.of(this.settingsRepo.getValue(0)).getProjectName();
Path codeFolderPath = actualProjectPath.resolve(IdeContext.FOLDER_WORKSPACES).resolve(IdeContext.WORKSPACE_MAIN).resolve(gitProjectName);
// Move temp project to actual project location $IDE_ROOT/<project_name>
moveProject(this.context.getIdeHome(), actualProjectPath);

// Move settings fodler containing code to $IDE_ROOT/<project_name>/workspaces/main/<git_project_name>
moveProject(actualProjectPath.resolve(IdeContext.FOLDER_SETTINGS), codeFolderPath);

// Set IDE_HOME to new (and actual) project location
this.context.setIdeHome(actualProjectPath);

// Link settings folder in IDE_HOME to settings folder in code repository
fileAccess.symlink(codeFolderPath.resolve(IdeContext.FOLDER_SETTINGS), actualProjectPath.resolve(IdeContext.FOLDER_SETTINGS));

} else {
// Repository seems to be invalid. Clean up temporary location and return error
fileAccess.delete(this.context.getIdeHome());
throw new CliException("This repository does not include an " + EnvironmentVariables.DEFAULT_PROPERTIES + " or " + EnvironmentVariables.LEGACY_PROPERTIES + " file at the top level or a settings folder with such a file. "
+ "The repository does not seem to be a valid IDEasy repository. Please verify the repository and try again.");
}
// Set IDE_HOME to new (and actual) project location
this.context.setIdeHome(actualProjectPath);
}

/**
* Moves files of a new projectfrom the temporary location to the final project location.
* @param oldPath - The path of the file or directory to be moved.
* @param newPath - The path of the destination.
*/
private void moveProject(Path oldPath, Path newPath) {
FileAccess fileAccess = this.context.getFileAccess();
try {
fileAccess.mkdirs(newPath);
fileAccess.move(oldPath, newPath, StandardCopyOption.REPLACE_EXISTING);
} catch (Exception e) {
LOG.error("Failed to move project from {} to {}. Please move it manually.", oldPath, newPath, e);
}
}

/**
* Checks whether te given repository is a settings repository by checking for the presence of ide.properties or devon.properties on the top level.
* @param repositoryPath - The path of the repository to be checked.
*/
private boolean isSettingsRepository(Path repositoryPath) {
return Files.exists(repositoryPath.resolve(EnvironmentVariables.DEFAULT_PROPERTIES)) || Files.exists(repositoryPath.resolve(EnvironmentVariables.LEGACY_PROPERTIES));
}

/**
* Checks whether te given repository is a code repository by checking for the presence of ide.properties or devon.properties within a settings folder on the top level.
* @param repositoryPath - The path of the repository to be checked.
*/
private boolean isCodeRepository(Path repositoryPath) {
return isSettingsRepository(repositoryPath.resolve(IdeContext.FOLDER_SETTINGS));
}

@Override
protected String getStepMessage() {

return "Create (clone) " + (isCodeRepository() ? "code" : "settings") + " repository";
return "Create (Clone) repository";
}

private void logWelcomeMessage() {
Expand Down
1 change: 0 additions & 1 deletion cli/src/main/resources/nls/Help.properties
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ cmd.yarn.detail=Yarn is a package manager and build tool for JavaScript. Detaile
commandlets=Available commandlets:
icd-hint=Hint: Use 'icd' command to easily navigate between your IDE home, projects, and workspaces. Type 'icd --help' for more details.
opt.--batch=enable batch mode (non-interactive).
opt.--code=clone given code repository containing a settings folder into workspaces so that settings can be committed alongside code changes.
opt.--debug=enable debug logging.
opt.--force=enable force mode.
opt.--force-plugin-reinstall=resets installed plugins to the project configuration
Expand Down
1 change: 0 additions & 1 deletion cli/src/main/resources/nls/Help_de.properties
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,6 @@ cmd.yarn.detail=Yarn ist ein Package Manager und Build-Werkzeug für JavaScript.
commandlets=Verfügbare Kommandos:
icd-hint=Hinweis: Verwenden Sie den Befehl 'icd' um einfach zwischen Ihrem IDE-Hauptverzeichnis, Projekten und Workspaces zu navigieren. Geben Sie 'icd --help' für weitere Details ein.
opt.--batch=Aktiviert den Batch-Modus (nicht-interaktive Stapelverarbeitung).
opt.--code=Git-Repository sowohl als Code- als auch als Settings-Repository verwenden.
opt.--debug=Aktiviert Debug-Ausgaben (Fehleranalyse).
opt.--force=Aktiviert den Force-Modus (Erzwingen).
opt.--force-plugin-reinstall=Setzt installierte Plugins zurück auf die Projektkonfiguration.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,54 +67,7 @@ void testCreateCommandletRun() {
assertThat(newProjectPath.resolve(IdeContext.FOLDER_PLUGINS)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_SOFTWARE)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_WORKSPACES).resolve(IdeContext.WORKSPACE_MAIN)).exists();
}

@ParameterizedTest
@ValueSource(strings = { "https://some-code-repository", "ssh://some-settings-repository" })
void testWarningWhenRepoDoesNotMeetNamingConvention(String invalidRepo, @TempDir Path tempDir) {
// arrange
ProcessContextGitMock gitMock = new ProcessContextGitMock(context, tempDir);
context.setProcessContext(gitMock);
CreateCommandlet cc = context.getCommandletManager().getCommandlet(CreateCommandlet.class);
cc.newProject.setValueAsString(NEW_PROJECT_NAME, context);
cc.codeRepositoryFlag.setValue(!invalidRepo.contains("code")); // raise conflict
cc.settingsRepo.setValue(invalidRepo);
cc.skipTools.setValue(true);
context.setAnswers("yes");
// act
cc.run();
// assert
assertThat(context).logAtInteraction().hasMessageContaining("Do you really want to create the project?");
Path newProjectPath = context.getIdeRoot().resolve(NEW_PROJECT_NAME);
assertThat(newProjectPath).exists();
assertThat(context.getIdeHome()).isEqualTo(newProjectPath);
assertThat(newProjectPath.resolve(IdeContext.FOLDER_PLUGINS)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_SOFTWARE)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_WORKSPACES).resolve(IdeContext.WORKSPACE_MAIN)).exists();
}

@Test
void testWarningWhenCodeRepoUsingDefaultMark(@TempDir Path tempDir) {
String invalidCodeRepo = "-";
// arrange
ProcessContextGitMock gitMock = new ProcessContextGitMock(context, tempDir);
context.setProcessContext(gitMock);
CreateCommandlet cc = context.getCommandletManager().getCommandlet(CreateCommandlet.class);
cc.newProject.setValueAsString(NEW_PROJECT_NAME, context);
cc.settingsRepo.setValue(invalidCodeRepo);
cc.codeRepositoryFlag.setValue(true);
cc.skipTools.setValue(true);
context.setAnswers("https://some-code-repository");
// act
cc.run();
// assert
assertThat(context).logAtWarning().hasMessageContaining("'-' is found after '--code'. This is invalid.");
Path newProjectPath = context.getIdeRoot().resolve(NEW_PROJECT_NAME);
assertThat(newProjectPath).exists();
assertThat(context.getIdeHome()).isEqualTo(newProjectPath);
assertThat(newProjectPath.resolve(IdeContext.FOLDER_PLUGINS)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_SOFTWARE)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_WORKSPACES).resolve(IdeContext.WORKSPACE_MAIN)).exists();
assertThat(context.getIdeRoot().resolve("_ide/tmp/projects").resolve(NEW_PROJECT_NAME)).doesNotExist();
}

@Test
Expand Down Expand Up @@ -217,9 +170,38 @@ void testWelcomeMessageDisplayed() {
// assert
Path newProjectPath = context.getIdeRoot().resolve(NEW_PROJECT_NAME);
assertThat(newProjectPath).exists();
assertThat(context.getIdeHome()).isEqualTo(newProjectPath);
assertThat(newProjectPath.resolve(IdeContext.FOLDER_PLUGINS)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_SOFTWARE)).exists();
assertThat(newProjectPath.resolve(IdeContext.FOLDER_WORKSPACES).resolve(IdeContext.WORKSPACE_MAIN)).exists();
assertThat(context.getIdeRoot().resolve("_ide/tmp/projects").resolve(NEW_PROJECT_NAME)).doesNotExist();
assertThat(context).logAtInfo().hasMessageContaining("Welcome to your new IDEasy project!");
}

@Test
void testProjectWithInvalidRepositoryNotCreated() {

// arrange - create a new project that is invalid (does not contain ide.properties file)
GitContextImplMock gitContextImplMock = new GitContextImplMock(context, TEST_RESOURCES.resolve("pypi"));

context.setGitContext(gitContextImplMock);
CreateCommandlet cc = context.getCommandletManager().getCommandlet(CreateCommandlet.class);
cc.newProject.setValueAsString(NEW_PROJECT_NAME, context);
cc.settingsRepo.setValue(IdeContext.DEFAULT_SETTINGS_REPO_URL);
cc.skipTools.setValue(true);

// act - run the create command
assertThatThrownBy(() -> cc.run())
.isInstanceOf(CliException.class)
.hasMessageContaining("This repository does not include an " + EnvironmentVariables.DEFAULT_PROPERTIES + " or " + EnvironmentVariables.LEGACY_PROPERTIES + " file at the top level or a settings folder with such a file.")
.hasMessageContaining("The repository does not seem to be a valid IDEasy repository. Please verify the repository and try again.");

// assert
Path newProjectPath = context.getIdeRoot().resolve(NEW_PROJECT_NAME);
assertThat(newProjectPath).doesNotExist();
assertThat(context.getIdeRoot().resolve("_ide/tmp/projects").resolve(NEW_PROJECT_NAME)).doesNotExist();

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
assertThat(context.getIdeRoot().resolve("_ide/tmp/projects").resolve(NEW_PROJECT_NAME)).doesNotExist();
assertThat(context.getTempPath().resolve(IdeContext.FOLDER_PROJECTS).resolve(NEW_PROJECT_NAME)).doesNotExist();

}

@Test
void testCreateWithDashPlaceholderAsCliArgument() {
// arrange - see https://github.com/devonfw/IDEasy/issues/2106
Expand Down
Loading
Loading