Skip to content

Commit

Permalink
Merge branch 'master' into feature/781-dotnet-support
Browse files Browse the repository at this point in the history
  • Loading branch information
hohwille authored Jun 9, 2022
2 parents 94b1dfa + a89bc57 commit 4846100
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ New release with various improvements and bugfixes:

* https://github.com/devonfw/ide/issues/777[#777]: Support for colored output
* https://github.com/devonfw/ide/issues/749[#749]: Prompt default value for Settings URL
* https://github.com/devonfw/ide/pull/785[#785]: fix passing args to terraform and helm on proxy usage

The full list of changes for this release can be found in https://github.com/devonfw/ide/milestone/30?closed=1[milestone 2022.04.003].

Expand Down
2 changes: 1 addition & 1 deletion scripts/src/main/resources/scripts/command/helm
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ source "$(dirname "${0}")"/../functions
# Call helm with specified arguments.
function doRun() {
doSetup silent
doRunCommand "${HELM_HOME}/helm" "${@}"
doRunCommand "${HELM_HOME}/helm ${*}"
}

function doSetup() {
Expand Down
2 changes: 1 addition & 1 deletion scripts/src/main/resources/scripts/command/terraform
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ source "$(dirname "${0}")"/../functions
# Call Terraform with specified arguments.
function doRun() {
doSetup silent
doRunCommand "${TERRAFORM_HOME}/terraform" "${@}"
doRunCommand "${TERRAFORM_HOME}/terraform ${*}"
}

function doSetup() {
Expand Down

0 comments on commit 4846100

Please sign in to comment.