We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d79f710 commit 5e007d6Copy full SHA for 5e007d6
plugin.yaml
@@ -7,11 +7,13 @@ description: "Preview helm upgrade changes as a diff"
7
useTunnel: true
8
platformCommand:
9
- command: ${HELM_PLUGIN_DIR}/bin/diff
10
+ # powershell does not return the original exit code, while cmd does
11
+ # see https://github.com/databus23/helm-diff/issues/910
12
- os: windows
- command: pwsh
13
+ command: cmd
14
args:
- - -Command
- - "& (Join-Path -Path (Get-ChildItem env:HELM_PLUGIN_DIR).value -ChildPath 'bin\\diff')"
15
+ - /c
16
+ - "%HELM_PLUGIN_DIR%/bin/diff"
17
18
platformHooks:
19
install:
0 commit comments