Skip to content
Snippets Groups Projects
Unverified Commit 255bc7f0 authored by Kamil Trzcinski's avatar Kamil Trzcinski
Browse files

Fix CSV output

parent eb05bf88
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -396,7 +396,8 @@ func (r repositoriesData) info(blobs blobsData) {
var stream io.WriteCloser
 
if *repositoryCsvOutput != "" {
stream, err := os.Create(*repositoryCsvOutput)
var err error
stream, err = os.Create(*repositoryCsvOutput)
if err == nil {
defer stream.Close()
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment