Commit 9b9c29b1 authored by robjuz's avatar robjuz Committed by Hordur Freyr Yngvason
Browse files

fix: Respect chart lockfile when present

parent 2af3cf60
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -59,8 +59,12 @@ function download_chart() {
    cp -R "$ASSETS_CHART_DIR" chart
  fi

  helm dependency update chart/
  if [[ -f chart/requirements.lock ]]; then
    helm dependency build chart/
  else
    helm dependency update chart/
  fi

}

function add_chart_repository() {