Skip to content

Commit a707832

Browse files
committed
Bumped v0.5.4
Signed-off-by: Vishal Rana <[email protected]>
1 parent e508a99 commit a707832

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IMAGE = labstack/tunnel
2-
VERSION = 0.5.3
2+
VERSION = 0.5.4
33

44
publish:
55
git tag v$(VERSION)

cmd/ping.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var pingCmd = &cobra.Command{
1111
Use: "ping",
1212
Short: "Ping remote host",
1313
Run: func(cmd *cobra.Command, args []string) {
14-
host := viper.GetString("host")
14+
host := net.JoinHostPort(viper.GetString("hostname"), "22222")
1515
conn, err := net.DialTimeout("tcp", host, 5*time.Second)
1616
if err != nil {
1717
exit(err)

0 commit comments

Comments
 (0)