Skip to content

Commit

Permalink
#1082: fixed start scripts for linux/mac (#1083)
Browse files Browse the repository at this point in the history
Co-authored-by: jan-vcapgemini <59438728+jan-vcapgemini@users.noreply.github.com>
  • Loading branch information
hohwille and jan-vcapgemini authored Feb 26, 2025
1 parent f47ce1d commit 20f52ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ private void createStartScript(String ide, String workspace) {
scriptContent = "#!/usr/bin/env bash\n"
+ "cd \"$(dirname \"$0\")\"\n"
+ "cd workspaces/" + workspace + "\n"
+ "ide " + ide + "\n";
+ "ideasy " + ide + "\n";
}
FileAccess fileAccess = this.context.getFileAccess();
fileAccess.writeFileContent(scriptContent, scriptPath);
Expand Down

0 comments on commit 20f52ca

Please sign in to comment.