updated method name in cli-utils

This commit is contained in:
max furman 2021-11-10 23:23:10 -08:00
parent 9d4a7cf9fc
commit c8560b4854

View file

@ -268,7 +268,7 @@ func (o *Output) Write() error {
case Snippet: case Snippet:
return fileutil.WriteSnippet(path, o.Content, 0600) return fileutil.WriteSnippet(path, o.Content, 0600)
case Line: case Line:
return fileutil.WriteLine(path, o.Content, 0600) return fileutil.PrependLine(path, o.Content, 0600)
default: default:
return errors.Errorf("unexpected output template type %s", string(o.Type)) return errors.Errorf("unexpected output template type %s", string(o.Type))
} }