Skip to content

Commit ad80f56

Browse files
#647: Fixed intelllij freezing bash (#648)
1 parent 020d5b1 commit ad80f56

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

CHANGELOG.adoc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ This file documents all notable changes to https://github.com/devonfw/IDEasy[IDE
66

77
Release with new features and bugfixes:
88

9+
* https://github.com/devonfw/IDEasy/issues/647[#647]: Fixed intellij script freezing shell
10+
* https://github.com/devonfw/IDEasy/issues/628[#628]: Fixed update fails on first error
911
* https://github.com/devonfw/IDEasy/issues/520[#520]: Fixed NullpointerException when pulling from branch without upstream
10-
* https://github.com/devonfw/IDEasy/issues/628[#638]: Fixed update fails on first error
1112
* https://github.com/devonfw/IDEasy/issues/37[#37]: Added Visual Studio Code (vscode) with plugin installation and plugin recommendation support
1213
* https://github.com/devonfw/IDEasy/issues/553[#553]: Mismatch of IDE_ROOT
1314
* https://github.com/devonfw/IDEasy/issues/556[#556]: ProcessContext should compute PATH on run and not in constructor
1415
* https://github.com/devonfw/IDEasy/issues/557[#557]: Failed to update tomcat: Cannot find a (Map) Key deserializer for type VersionRange
15-
* https://github.com/devonfw/IDEasy/issues/623[#623]: CliArgument prepand and append methods inconsistent
16+
* https://github.com/devonfw/IDEasy/issues/623[#623]: CliArgument prepend and append methods inconsistent
1617
* https://github.com/devonfw/IDEasy/issues/621[#621]: Xml merger ID fallback not working
1718
* https://github.com/devonfw/IDEasy/issues/628[#628]: ide update fails on first error
1819
* https://github.com/devonfw/IDEasy/issues/552[#552]: ZIP extraction buggy
19-
* https://github.com/devonfw/IDEasy/issues/604[#604]: Wrong Path Formating of MAVEN_ARGS variable on Windows
20+
* https://github.com/devonfw/IDEasy/issues/604[#604]: Wrong Path Formatting of MAVEN_ARGS variable on Windows
2021
* https://github.com/devonfw/IDEasy/issues/461[#461]: Add progress bar for extraction (unpacking)
2122
* https://github.com/devonfw/IDEasy/issues/550[#550]: Installation of plugins for IDEs fails when the plugin-id contains a space character
2223
* https://github.com/devonfw/IDEasy/issues/574[#574]: Mismatch of IDE_ROOT

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ protected void createStartScript(Path extractedDir, String binaryName) {
166166
}
167167
Path bashFile = binFolder.resolve(getName());
168168
String bashFileContentStart = "#!/usr/bin/env bash\n\"$(dirname \"$0\")/";
169-
String bashFileContentEnd = "\" $*";
169+
String bashFileContentEnd = "\" $* &";
170170
try {
171171
Files.writeString(bashFile, bashFileContentStart + binaryName + bashFileContentEnd);
172172
} catch (IOException e) {

0 commit comments

Comments
 (0)