Skip to content
This repository has been archived by the owner on Apr 6, 2021. It is now read-only.

Commit

Permalink
Few minor fixes:
Browse files Browse the repository at this point in the history
1. Fixes #5
2. Upon joining, new parties are presented with instant replay of most
   recent commands.
  • Loading branch information
kontsevoy committed Sep 10, 2016
1 parent 58ace01 commit b684105
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion clt/clt.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
package version

const (
Version = "0.2.0-beta"
Version = "0.2.2-beta"
)

var Gitref, BuildDate string

0 comments on commit b684105

Please sign in to comment.