From a4e807eddfe20513e4e45a8bc84b6f5ef9d67ab6 Mon Sep 17 00:00:00 2001 From: yxxhero Date: Sat, 18 Apr 2026 10:39:48 +0800 Subject: [PATCH] fix: correct file:// path and remove --skip-deps for dependency build Signed-off-by: yxxhero --- .../test-cases/issue-2502-race-condition-local-chart.sh | 2 +- .../input/helm/my-chart/Chart.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/integration/test-cases/issue-2502-race-condition-local-chart.sh b/test/integration/test-cases/issue-2502-race-condition-local-chart.sh index 5f7722e9..011e12dd 100644 --- a/test/integration/test-cases/issue-2502-race-condition-local-chart.sh +++ b/test/integration/test-cases/issue-2502-race-condition-local-chart.sh @@ -30,7 +30,7 @@ info "Running helmfile template with 5 releases sharing the same local chart (de pass=0 iterations=5 for i in $(seq 1 ${iterations}); do - if ${helmfile} -f ${issue_2502_input_dir}/helmfile.yaml -e test template --skip-deps > ${actual} 2>&1; then + if ${helmfile} -f ${issue_2502_input_dir}/helmfile.yaml -e test template > ${actual} 2>&1; then pass=$((pass + 1)) else cat ${actual} diff --git a/test/integration/test-cases/issue-2502-race-condition-local-chart/input/helm/my-chart/Chart.yaml b/test/integration/test-cases/issue-2502-race-condition-local-chart/input/helm/my-chart/Chart.yaml index a03785c1..8efe6081 100644 --- a/test/integration/test-cases/issue-2502-race-condition-local-chart/input/helm/my-chart/Chart.yaml +++ b/test/integration/test-cases/issue-2502-race-condition-local-chart/input/helm/my-chart/Chart.yaml @@ -1,6 +1,6 @@ dependencies: - name: raw - repository: file://../../../charts/raw + repository: file://../../../../../../charts/raw version: 0.0.1 apiVersion: v2 appVersion: "1.0.0"