Skip to content

Commit 28a1165

Browse files
committed
Fix undefined error.
1 parent 75ca079 commit 28a1165

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/ciChartExtend.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var editChartCmd = &cobra.Command{
6363
}
6464

6565
// Make sure repositories are up to date
66-
command = "helm repo update"
66+
command := "helm repo update"
6767
exec.Command("bash", "-c", command).Run()
6868

6969
if len(p) == 2 && chartExistsLocally == false && p[0] != "." {

0 commit comments

Comments
 (0)