From 18df9ccb2c637e51a2b95dd30bd1fd830c05d7b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= Date: Fri, 11 Nov 2022 16:16:55 +0100 Subject: [PATCH 1/2] #976: eclipse needs to be setup before we can call it --- scripts/src/main/resources/scripts/command/eclipse | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/src/main/resources/scripts/command/eclipse b/scripts/src/main/resources/scripts/command/eclipse index 270ceeb2c..8fa3a7a70 100755 --- a/scripts/src/main/resources/scripts/command/eclipse +++ b/scripts/src/main/resources/scripts/command/eclipse @@ -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 From 2bf7a06aa796697256a89945261860ee251f6dcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Hohwiller?= Date: Fri, 11 Nov 2022 16:20:11 +0100 Subject: [PATCH 2/2] #976: added to changelog --- CHANGELOG.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.asciidoc b/CHANGELOG.asciidoc index 381a0e08d..90aeac8b9 100644 --- a/CHANGELOG.asciidoc +++ b/CHANGELOG.asciidoc @@ -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