Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mylxsw committed Jun 27, 2019
1 parent b7f8e08 commit 70e3d17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/mylxsw/remote-tail

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/BurntSushi/toml v0.3.1
golang.org/x/crypto v0.0.0-20190325154230-a5d413f7728c
)
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ var welcomeMessage = getWelcomeMessage() + console.ColorfulText(console.TextMage
var filePath = flag.String("file", "", "-file=\"/var/log/*.log\"")
var hostStr = flag.String("hosts", "", "-hosts=root@192.168.1.101,root@192.168.1.102")
var configFile = flag.String("conf", "", "-conf=example.toml")
var tailFlags = flag.String("tail-flags", "--retry --follow=name", "flags for tail command, you can use -f instead if your server does't support `--retry --follow=name` flags")
var slient = flag.Bool("slient", false, "-slient=false")
var tailFlags = flag.String("tail_flags", "--retry --follow=name", "flags for tail command, you can use `-f` instead when your server does't support `--retry --follow=name` flags")

var Version = ""
var GitCommit = ""
Expand Down

0 comments on commit 70e3d17

Please sign in to comment.