Fix permissions issue and doc generation issue

Signed-off-by: Vasek - Tom C <tom.chauveau@epitech.eu>
This commit is contained in:
Vasek - Tom C 2022-01-28 22:46:36 +01:00
parent 5de86cb1ee
commit 6f5095ec19
No known key found for this signature in database
GPG Key ID: 175D82E572427960
2 changed files with 11 additions and 6 deletions

View File

@ -338,7 +338,9 @@ func walkStdlib(ctx context.Context, output, format string) {
return err
}
if p == "." || d.Name() == pkg.AlphaModule || !d.IsDir() || d.Name() == "cue.mod" {
// Ignore useless embedded files
if p == "." || d.Name() == pkg.AlphaModule || !d.IsDir() || d.Name() == "cue.mod" ||
strings.Contains(p, "cue.mod") || strings.Contains(p, "tests") {
return nil
}
@ -357,6 +359,10 @@ func walkStdlib(ctx context.Context, output, format string) {
lg.Warn().Str("package", p).Err(err).Msg("ignoring")
return nil
}
if strings.Contains(err.Error(), "cannot find package") {
lg.Warn().Str("package", p).Err(err).Msg("ignoring")
return nil
}
return err
}

View File

@ -133,11 +133,10 @@ func extractModules(dest string) error {
return err
}
info, err := fs.Stat(FS, p)
if err != nil {
return err
}
return os.WriteFile(overlayPath, contents, info.Mode().Perm())
// Give exec permission on embedded file to freely use shell script
// Exclude permission linter
//nolint
return os.WriteFile(overlayPath, contents, 0700)
})
}