Skip to content

Commit

Permalink
Merge pull request #80 from tongson/crimson_ointment
Browse files Browse the repository at this point in the history
Crimson Ointment
  • Loading branch information
tongson authored Sep 15, 2024
2 parents 3aa21b6 + af97543 commit e47944f
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
16 changes: 16 additions & 0 deletions README.d/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
#### 2.6.0

Crimson Ointment

* Remove version information from `rrd` output
* Clean up non-terminal STDERR output
* Argument mode priority changed; now longest to shortest

#### 2.5.0

Scrawny Municipal

* Fix include ordering
* Better argument mode detection


#### 2.4.0

Sulk Harmonics
Expand Down
4 changes: 2 additions & 2 deletions const.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

const cVERSION = "2.5.0"
const cCODE = "Scrawny Municipal"
const cVERSION = "2.6.0"
const cCODE = "Crimson Ointment"

const cOP = "LOG"
const cINC = "VARS"
Expand Down
2 changes: 1 addition & 1 deletion test/rr_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ func TestSsh(T *testing.T) {
})
T.Run("arg", func(t *testing.T) {
rr := RunArg{Exe: cEXE + "p", Args: []string{"foo@chroot", "remote:arg", "this"}}
ret, out := rr.Run()
ret, out := rr.Run()
if !ret {
t.Error("wants `true`")
}
Expand Down
3 changes: 2 additions & 1 deletion tools/tools.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
//go:build tools
// +build tools

package tools

import (
_ "github.com/kisielk/errcheck"
_ "golang.org/x/lint/golint"
_ "honnef.co/go/tools/cmd/staticcheck"
_ "github.com/kisielk/errcheck"
)

0 comments on commit e47944f

Please sign in to comment.