Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#976: eclipse needs to be setup before we can call it #977

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ New release with various improvements and bugfixes:
* https://github.com/devonfw/ide/issues/940[#940]: Make doInstall even more generic
* https://github.com/devonfw/ide/issues/935[#935]: doDevonCommand should use doFail instead of doAskToContinue
* https://github.com/devonfw/ide/issues/905[#905]: Better error handling when installing Eclipse plugins
* https://github.com/devonfw/ide/issues/976[#976]: Eclipse project import fails
* https://github.com/devonfw/ide/issues/960[#960]: openshift version check fails
* https://github.com/devonfw/ide/issues/929[#929]: Ensure function documentation is in sync

Expand Down
3 changes: 3 additions & 0 deletions scripts/src/main/resources/scripts/command/eclipse
Original file line number Diff line number Diff line change
Expand Up @@ -430,15 +430,18 @@ do
elif [ "${1}" = "add-plugin" ]
then
shift
doSetup silent
doAddPlugin "${@}"
exit ${?}
elif [ "${1}" = "import" ]
then
doSetup silent
doImportEclipse "${2}" "${3}"
exit ${?}
elif [ "${1}" = "mirror" ]
then
shift
doSetup silent
doMirrorUpdateSite "${@}"
exit ${?}
else
Expand Down