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):
   '''