Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions execute.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package main

import (
"fmt"
"io"
"io/ioutil"
"os"
Expand All @@ -21,6 +22,7 @@ func execute(standard func(c config) error, c config, imports typewriter.ImportS
defer importsSrc.Close()

// custom imports file exists, use it
fmt.Printf("Found custom imports file %s. Using it.\n", c.customName)
return executeCustom(importsSrc, c, imports, body)
}

Expand Down