From b684105696bbf158100b5aca197d44d0f0d5520c Mon Sep 17 00:00:00 2001 From: Ev Kontsevoy Date: Fri, 9 Sep 2016 23:26:11 -0700 Subject: [PATCH] Few minor fixes: 1. Fixes #5 2. Upon joining, new parties are presented with instant replay of most recent commands. --- Makefile | 2 +- clt/clt.go | 2 +- version/version.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index af6a37d..c4bd47b 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ # - run `make release` to create and push the new git tag # To bump the version, edit this variable and run `make version` -export VERSION=0.2.0-beta +export VERSION=0.2.2-beta OUT=out/teleconsole GOSRC=$(shell find -name "*.go" -print) diff --git a/clt/clt.go b/clt/clt.go index e4f123e..5a3cbe8 100644 --- a/clt/clt.go +++ b/clt/clt.go @@ -138,7 +138,7 @@ func StartBroadcast(c *conf.Config, api *APIClient, cmd []string) error { } // SSH into ourselves (we'll try a few times) - err = localClient.SSH(cmd, false, nil) + err = localClient.SSH(cmd, false) if err != nil { fmt.Fprintf(os.Stderr, "%v\n", err) } else { diff --git a/version/version.go b/version/version.go index d627088..8f6cac8 100644 --- a/version/version.go +++ b/version/version.go @@ -2,7 +2,7 @@ package version const ( - Version = "0.2.0-beta" + Version = "0.2.2-beta" ) var Gitref, BuildDate string