diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 89c831215..39ac272ec 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -6,17 +6,18 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE Release with new features and bugfixes: +* https://github.com/devonfw/IDEasy/issues/647[#647]: Fixed intellij script freezing shell +* https://github.com/devonfw/IDEasy/issues/628[#628]: Fixed update fails on first error * https://github.com/devonfw/IDEasy/issues/520[#520]: Fixed NullpointerException when pulling from branch without upstream -* https://github.com/devonfw/IDEasy/issues/628[#638]: Fixed update fails on first error * https://github.com/devonfw/IDEasy/issues/37[#37]: Added Visual Studio Code (vscode) with plugin installation and plugin recommendation support * https://github.com/devonfw/IDEasy/issues/553[#553]: Mismatch of IDE_ROOT * https://github.com/devonfw/IDEasy/issues/556[#556]: ProcessContext should compute PATH on run and not in constructor * https://github.com/devonfw/IDEasy/issues/557[#557]: Failed to update tomcat: Cannot find a (Map) Key deserializer for type VersionRange -* https://github.com/devonfw/IDEasy/issues/623[#623]: CliArgument prepand and append methods inconsistent +* https://github.com/devonfw/IDEasy/issues/623[#623]: CliArgument prepend and append methods inconsistent * https://github.com/devonfw/IDEasy/issues/621[#621]: Xml merger ID fallback not working * https://github.com/devonfw/IDEasy/issues/628[#628]: ide update fails on first error * https://github.com/devonfw/IDEasy/issues/552[#552]: ZIP extraction buggy -* https://github.com/devonfw/IDEasy/issues/604[#604]: Wrong Path Formating of MAVEN_ARGS variable on Windows +* https://github.com/devonfw/IDEasy/issues/604[#604]: Wrong Path Formatting of MAVEN_ARGS variable on Windows * https://github.com/devonfw/IDEasy/issues/461[#461]: Add progress bar for extraction (unpacking) * https://github.com/devonfw/IDEasy/issues/550[#550]: Installation of plugins for IDEs fails when the plugin-id contains a space character * https://github.com/devonfw/IDEasy/issues/574[#574]: Mismatch of IDE_ROOT diff --git a/cli/src/main/java/com/devonfw/tools/ide/tool/ide/IdeaBasedIdeToolCommandlet.java b/cli/src/main/java/com/devonfw/tools/ide/tool/ide/IdeaBasedIdeToolCommandlet.java index 11b409a03..9049b1537 100644 --- a/cli/src/main/java/com/devonfw/tools/ide/tool/ide/IdeaBasedIdeToolCommandlet.java +++ b/cli/src/main/java/com/devonfw/tools/ide/tool/ide/IdeaBasedIdeToolCommandlet.java @@ -166,7 +166,7 @@ protected void createStartScript(Path extractedDir, String binaryName) { } Path bashFile = binFolder.resolve(getName()); String bashFileContentStart = "#!/usr/bin/env bash\n\"$(dirname \"$0\")/"; - String bashFileContentEnd = "\" $*"; + String bashFileContentEnd = "\" $* &"; try { Files.writeString(bashFile, bashFileContentStart + binaryName + bashFileContentEnd); } catch (IOException e) {