Correctly print server URL when base-url is specified in the command line
authorDato Simó <dato@net.com.org.es>
Fri, 9 May 2014 01:23:26 +0000 (02:23 +0100)
committerspf13 <steve.francia@gmail.com>
Sat, 10 May 2014 03:27:21 +0000 (23:27 -0400)
When running hugo server like:

    $ hugo server -s docs -b myhostname

the printed output now directs to http://myhostname:1313 instead of
(invariably) http://localhost:1313.

As per server(), BaseUrl is never empty, and the required value is always
found in Viper.

commands/server.go

index d4089bdb3aba7a9bbfdaa6639bac69a0a3edeba5..ed04f04103d559b81fad9b1c3ed4f4c91e04b1bb 100644 (file)
@@ -79,11 +79,7 @@ func server(cmd *cobra.Command, args []string) {
 func serve(port int) {
        jww.FEEDBACK.Println("Serving pages from " + helpers.AbsPathify(viper.GetString("PublishDir")))
 
-       if BaseUrl == "" {
-               jww.FEEDBACK.Printf("Web Server is available at %s\n", viper.GetString("BaseUrl"))
-       } else {
-               jww.FEEDBACK.Printf("Web Server is available at http://localhost:%v\n", port)
-       }
+       jww.FEEDBACK.Printf("Web Server is available at %s\n", viper.GetString("BaseUrl"))
 
        fmt.Println("Press ctrl+c to stop")