Create charts directory for scaffold chart (#6516)

Signed-off-by: Martin Hickey <martin.hickey@ie.ibm.com>
pull/6549/head
Martin Hickey 5 years ago committed by GitHub
parent 3fa4465eec
commit db15a6f898
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -452,6 +452,10 @@ func Create(name, dir string) (string, error) {
return cdir, err
}
}
// Need to add the ChartsDir explicitly as it does not contain any file OOTB
if err := os.MkdirAll(filepath.Join(cdir, ChartsDir), 0755); err != nil {
return cdir, err
}
return cdir, nil
}

Loading…
Cancel
Save