feat: with readme

This commit is contained in:
2023-04-07 00:18:03 +02:00
parent 3ab20c8a87
commit 03e98cbf90
2 changed files with 119 additions and 8 deletions

View File

@@ -33,14 +33,6 @@ func Compile(
if err != nil {
return nil, fmt.Errorf("could not create a tempdir. err: %v", err)
}
//defer func() {
// if _, err := os.Stat(tmpdir); !errors.Is(err, os.ErrNotExist) {
// err := os.RemoveAll(tmpdir)
// if err != nil {
// panic(err)
// }
// }
//}()
if _, err := os.Stat(valuesFilePath); errors.Is(err, os.ErrNotExist) {
return nil, fmt.Errorf("the values file does not exist: %v", err)