From 4d6671cc2417aeb0104024690392104900dfc586 Mon Sep 17 00:00:00 2001 From: Jannik Hollenbach Date: Sun, 29 Sep 2019 18:23:38 +0200 Subject: [PATCH] Revert "Use `--dependency-update` flag when packaging chart" This reverts commit 3b9be77c7b5d162ad0e9626f1ad80ea7753657f8. --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 2890ab2..5523401 100644 --- a/index.js +++ b/index.js @@ -65,7 +65,7 @@ async function run() { console.log(`Packaging helm chart in directory ${chartDirname}`); await exec.exec( `helm package`, - [chartDirname, '--dependency-update', '--destination', '../output'], + [chartDirname, '--destination', '../output'], { cwd: `./${chartsDir}` } ); }