Skip to content

Commit

Permalink
#647: Fixed intelllij freezing bash (#648)
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-vcapgemini authored Sep 26, 2024
1 parent 020d5b1 commit ad80f56
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit ad80f56

Please sign in to comment.