1
0
mirror of https://github.com/gohugoio/hugo.git synced 2024-05-11 05:54:58 +00:00

commands: Fix failing Travis server test

This commit is contained in:
Bjørn Erik Pedersen
2018-04-12 09:31:53 +02:00
parent 14c35c8a56
commit 9c782d5147
2 changed files with 9 additions and 16 deletions

View File

@@ -41,8 +41,6 @@ import (
type serverCmd struct {
// Can be used to stop the server. Useful in tests
stop <-chan bool
// Can be used to receive notification about when the server is started. Useful in tests.
started chan<- bool
disableLiveReload bool
navigateToChanged bool
@@ -60,11 +58,11 @@ type serverCmd struct {
}
func newServerCmd() *serverCmd {
return newServerCmdSignaled(nil, nil)
return newServerCmdSignaled(nil)
}
func newServerCmdSignaled(stop <-chan bool, started chan<- bool) *serverCmd {
cc := &serverCmd{stop: stop, started: started}
func newServerCmdSignaled(stop <-chan bool) *serverCmd {
cc := &serverCmd{stop: stop}
cc.baseBuilderCmd = newBuilderCmd(&cobra.Command{
Use: "server",
@@ -400,10 +398,6 @@ func (c *commandeer) serve(s *serverCmd) error {
}()
}
if s.started != nil {
s.started <- true
}
jww.FEEDBACK.Println("Press Ctrl+C to stop")
if s.stop != nil {