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)
commit0053be979a8b9f8b0887d4e2aeb24485a4cdcf3c
tree8aaae21ff128b0949b3b6686a3d5180ac2056979
parent2194cc77de3bcfc0107d8e8284781f9f7b31c5c2
Correctly print server URL when base-url is specified in the command line

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