diff options
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/ciigo/main.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/cmd/ciigo/main.go b/cmd/ciigo/main.go index b33b062..4701c68 100644 --- a/cmd/ciigo/main.go +++ b/cmd/ciigo/main.go @@ -40,6 +40,7 @@ import ( "git.sr.ht/~shulhan/ciigo" "github.com/shuLhan/share/lib/debug" + "github.com/shuLhan/share/lib/memfs" ) func main() { @@ -91,7 +92,9 @@ func main() { HtmlTemplate: *htmlTemplate, Exclude: *exclude, }, - GoFileName: *outputFile, + EmbedOptions: memfs.EmbedOptions{ + GoFileName: *outputFile, + }, } err = ciigo.GoEmbed(&genOpts) |
