-
Notifications
You must be signed in to change notification settings - Fork 65
Creation of start scripts for IDEs #993
Copy link
Copy link
Labels
createCreate commandlet used to create new IDEasy projects with "ide create"Create commandlet used to create new IDEasy projects with "ide create"enhancementNew feature or requestNew feature or requestupdaterelated to updating software or the entire iderelated to updating software or the entire ide
Milestone
Metadata
Metadata
Assignees
Labels
createCreate commandlet used to create new IDEasy projects with "ide create"Create commandlet used to create new IDEasy projects with "ide create"enhancementNew feature or requestNew feature or requestupdaterelated to updating software or the entire iderelated to updating software or the entire ide
Type
Projects
Status
✅ Done
As a IDEasy user, I want to have start scripts generated for my IDEs so that I can just double click them to launch the IDE instead of opening a terminal and entering
ide intellijoride eclipse,...This was a standard feature of devonfw-ide but seems to be missed out in IDEasy.
We do have the variable with defaults in our code:
IDEasy/cli/src/main/java/com/devonfw/tools/ide/variable/IdeVariables.java
Line 37 in 05af7d1
However, it is not used anywhere.
It should be honoured by both
ide create ...as well as byide update.Notice
This feature is not to be confused with topics like #366 #540 #832 that also use the term
start script for IDE/toolbut mean a script calledintellijinside thesoftware/intellij/binfolder to avoid that on windows we need to runidea64.exeand on linuxidea.shand on Macidea- these are flaws from IDE tool vendors but in the end we gave up on this idea since we also need some backward compatibility with devonfw-ide.This story here is talking about scripts inside
$IDE_HOMElikeeclipse-main[.bat]orintellij-main[.bat]that I can double click without the need to open a bash terminal and entering CLI commands to launch my IDE in daily business.