-
Notifications
You must be signed in to change notification settings - Fork 286
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
plugin does not install if helm is helm 3 but run from helm 2 #244
Comments
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
I'd like to keep this open. I'll submit a PR and see what happens. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
bump |
It looks like it might but I have to try it to be sure. I will post result soon. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Looks like #270 fixes this indeed |
The install-binary.sh script uses the
helm home
command which only exists in helm 3. Interestingly, if either helm 2 XOR helm 3 are installed on my system, the plugin installs fine. However if both versions of helm are on my system, andhelm
is actually helm 3, and helm 2 has some other name, then the plugin no longer installs for helm 2:helm version
shows helm 3helm plugin install https://github.com/databus23/helm-diff
workshelm2 version
shows helm 2helm2 plugin install https://github.com/databus23/helm-diff
fails with error message thathome
is not a recognized commandAt first unclear what this is about, but inspection of source code indicates the error happens because
install-binary.sh
callshelm home
, which in the above scenario actually calls helm 3, which does not supporthome
command (I'm guessing that helm 3'splugin install
does not use that script otherwise it would fail too).Is there a reason that
$(helm home)
cannot be replaced by$HELM_HOME
?The text was updated successfully, but these errors were encountered: