latest - uses custom build image now

This commit is contained in:
2022-12-06 17:43:07 +04:00
parent a2bf7ee607
commit aa3c159521
13 changed files with 54 additions and 91 deletions

View File

@@ -3,7 +3,7 @@ package cli
import "fmt"
// FIXME make this write to a bytes.Buffer with fprintf
func dumpByteSlice(b []byte) {
func DumpByteSlice(b []byte) {
var a [16]byte
n := (len(b) + 15) &^ 15
for i := 0; i < n; i++ {