Skip to content

Commit

Permalink
Rename composite files
Browse files Browse the repository at this point in the history
  • Loading branch information
spencerhance committed Jun 28, 2019
1 parent f15a1f4 commit 89a5e26
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions pkg/composite/gen/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -808,12 +808,12 @@ func main() {
genTests(testOut)

var err error
err = ioutil.WriteFile("./pkg/composite/composite.go", []byte(gofmtContent(out)), 0644)
err = ioutil.WriteFile("./pkg/composite/gen.go", []byte(gofmtContent(out)), 0644)
//err = ioutil.WriteFile("./pkg/composite/composite.go", []byte(out.String()), 0644)
if err != nil {
panic(err)
}
err = ioutil.WriteFile("./pkg/composite/composite_test.go", []byte(gofmtContent(testOut)), 0644)
err = ioutil.WriteFile("./pkg/composite/gen_test.go", []byte(gofmtContent(testOut)), 0644)
if err != nil {
panic(err)
}
Expand Down
File renamed without changes.

0 comments on commit 89a5e26

Please sign in to comment.