commit | f609837d3f706febf5d59aa0828a7dd9d963a003 | [log] [tgz] |
---|---|---|
author | tmeneau <tmeneau@xetus.com> | Fri Oct 27 15:26:03 2017 -0400 |
committer | Petr Michalec <epcim@apealive.net> | Mon Nov 13 17:47:03 2017 +0100 |
tree | b8b44d67455664f35873d8c7d14ff8e61fae9aa8 | |
parent | ba4c47c3687130056be2b784a8a38bc666e145d5 [diff] |
fix: add missing arg in helm.install_chart_dependencies function Refs salt-formulas/salt-formula-helm#7
diff --git a/_modules/helm.py b/_modules/helm.py index 21877a2..c51bfd3 100644 --- a/_modules/helm.py +++ b/_modules/helm.py
@@ -361,7 +361,7 @@ chart_path The path to the chart for which to install dependencies ''' - return _cmd_and_result('dependency', 'build', **kwargs) + return _cmd_and_result('dependency', 'build', chart_path, **kwargs) def package(path, destination = None, **kwargs): '''