From 5550c4148e91f5b1cdc4a552b6ece42caa4fc5e8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kriszti=C3=A1n=20Szab=C3=B3?= Date: Sat, 28 Dec 2013 20:37:44 +0100 Subject: [PATCH] Added append-port flag --- commands/server.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/commands/server.go b/commands/server.go index b3d02642..cb33aedf 100644 --- a/commands/server.go +++ b/commands/server.go @@ -23,10 +23,12 @@ import ( var serverPort int var serverWatch bool +var serverAppend bool func init() { serverCmd.Flags().IntVarP(&serverPort, "port", "p", 1313, "port to run the server on") serverCmd.Flags().BoolVarP(&serverWatch, "watch", "w", false, "watch filesystem for changes and recreate as needed") + serverCmd.Flags().BoolVarP(&serverAppend, "append-port", "", true, "append port to baseurl") } var serverCmd = &cobra.Command{ @@ -49,7 +51,11 @@ func server(cmd *cobra.Command, args []string) { BaseUrl = "http://" + BaseUrl } - Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/") + ":" + strconv.Itoa(serverPort) + if serverAppend { + Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/") + ":" + strconv.Itoa(serverPort) + } else { + Config.BaseUrl = strings.TrimSuffix(BaseUrl, "/") + } build(serverWatch) -- 2.30.2