From 16eeb1fbfb621737c5cf3de80e4a6f70f24a1372 Mon Sep 17 00:00:00 2001 From: Rail Aliiev Date: Tue, 9 Jan 2024 12:36:33 -0500 Subject: [PATCH] Fix non zero exit code `diff` returns non-zero exit code when there is a diff. We should not fail on this. --- build/make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/make.sh b/build/make.sh index 2964d61d..ae10de22 100755 --- a/build/make.sh +++ b/build/make.sh @@ -20,4 +20,4 @@ curl -fsSL "https://s3.amazonaws.com/${charts_hostname}/index.yaml" > "${artifac # Build the charts $HELM_INSTALL_DIR/helm package cockroachdb --destination "${artifacts_dir}" $HELM_INSTALL_DIR/helm repo index "${artifacts_dir}" --url "https://${charts_hostname}" --merge "${artifacts_dir}/old-index.yaml" -diff -u "${artifacts_dir}/old-index.yaml" "${artifacts_dir}/index.yaml" +diff -u "${artifacts_dir}/old-index.yaml" "${artifacts_dir}/index.yaml" || true