Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Vic Iglesias committed Oct 26, 2016
1 parent cd34492 commit 06d9ccd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pkg/chartutil/create.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,25 +232,25 @@ func Create(chartfile *chart.Metadata, dir string) (string, error) {
// Write out deployment.yaml
val = []byte(defaultDeployment)
if err := ioutil.WriteFile(filepath.Join(cdir, TemplatesDir, DeploymentName), val, 0644); err != nil {
return cdir, err
return cdir, err
}

// Write out service.yaml
val = []byte(defaultService)
if err := ioutil.WriteFile(filepath.Join(cdir, TemplatesDir, ServiceName), val, 0644); err != nil {
return cdir, err
return cdir, err
}

// Write out NOTES.txt
val = []byte(defaultNotes)
if err := ioutil.WriteFile(filepath.Join(cdir, TemplatesDir, NotesName), val, 0644); err != nil {
return cdir, err
return cdir, err
}

// Write out _helpers.tpl
val = []byte(defaultHelpers)
if err := ioutil.WriteFile(filepath.Join(cdir, TemplatesDir, HelpersName), val, 0644); err != nil {
return cdir, err
return cdir, err
}
return cdir, nil
}

0 comments on commit 06d9ccd

Please sign in to comment.