mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-06-28 11:00:59 -03:00
Merge commit 'f955c625aded244864e83a872b396868a490dbc5' as 'go-enry'
This commit is contained in:
14
go-enry/internal/code-generator/generator/linguist-commit.go
Normal file
14
go-enry/internal/code-generator/generator/linguist-commit.go
Normal file
@ -0,0 +1,14 @@
|
||||
package generator
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
)
|
||||
|
||||
// Commit takes a commit and builds the source file from tmplPath. It complies with type File signature.
|
||||
func Commit(fileToParse, samplesDir, outPath, tmplPath, tmplName, commit string) error {
|
||||
buf := &bytes.Buffer{}
|
||||
if err := executeTemplate(buf, tmplName, tmplPath, commit, nil, nil); err != nil {
|
||||
return err
|
||||
}
|
||||
return formatedWrite(outPath, buf.Bytes())
|
||||
}
|
Reference in New Issue
Block a user