mirror of
https://github.com/filebrowser/filebrowser.git
synced 2026-07-20 18:19:30 +00:00
Fix Hugo error
This commit is contained in:
parent
9ca6ef1f3e
commit
c0b60d5928
3 changed files with 10 additions and 6 deletions
|
|
@ -16,7 +16,12 @@ import (
|
|||
"github.com/robfig/cron"
|
||||
)
|
||||
|
||||
func init() {
|
||||
var (
|
||||
ErrHugoNotFound = errors.New("It seems that tou don't have 'hugo' on your PATH")
|
||||
ErrUnsupportedFileType = errors.New("The type of the provided file isn't supported for this action")
|
||||
)
|
||||
|
||||
func RegisterHugo() {
|
||||
filemanager.RegisterPlugin("hugo", filemanager.Plugin{
|
||||
JavaScript: rice.MustFindBox("./assets/").MustString("hugo.js"),
|
||||
CommandEvents: []string{"before_publish", "after_publish"},
|
||||
|
|
@ -30,11 +35,6 @@ func init() {
|
|||
})
|
||||
}
|
||||
|
||||
var (
|
||||
ErrHugoNotFound = errors.New("It seems that tou don't have 'hugo' on your PATH")
|
||||
ErrUnsupportedFileType = errors.New("The type of the provided file isn't supported for this action")
|
||||
)
|
||||
|
||||
// Hugo is a hugo (https://gohugo.io) plugin.
|
||||
type Hugo struct {
|
||||
// Website root
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue