We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents caab363 + c4bff61 commit 3dd2a4bCopy full SHA for 3dd2a4b
1 file changed
index.js
@@ -176,7 +176,8 @@ async function addRepo(helm) {
176
if (repoUsername) args.push(`--username=${repoUsername}`);
177
if (repoPassword) args.push(`--password=${repoPassword}`);
178
179
- return exec.exec(helm, args);
+ await exec.exec(helm, args);
180
+ await exec.exec(helm, ["repo", "update"])
181
}
182
183
return Promise.resolve()
0 commit comments