Skip to content

Commit

Permalink
#976: eclipse needs to be setup before we can call it (#977)
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille authored Nov 14, 2022
1 parent 1bda786 commit 605aa47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
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

0 comments on commit 605aa47

Please sign in to comment.