Skip to content

Commit

Permalink
update depends
Browse files Browse the repository at this point in the history
  • Loading branch information
fcharlie committed Aug 3, 2021
1 parent 7d197cc commit 941d9a0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/bali/compile.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@ func (be *Executor) Compile(wd string) error {
cmd.Dir = wd
cmd.Stderr = os.Stderr
cmd.Stdout = os.Stdout
fmt.Fprintf(os.Stderr, "go compile \x1b[01;32m%s\x1b[0m version: \x1b[32m%s\x1b[0m\n", exe.Name, exe.Version)
fmt.Fprintf(os.Stderr, "\x1b[01;34m%s\x1b[0m\n", cmd.String())
fmt.Fprintf(os.Stderr, "go compile \x1b[32m%s\x1b[0m version: \x1b[32m%s\x1b[0m\n", exe.Name, exe.Version)
fmt.Fprintf(os.Stderr, "\x1b[34m%s\x1b[0m\n", cmd.String())
if err := cmd.Run(); err != nil {
fmt.Fprintf(os.Stderr, "compile %s error \x1b[31m%s\x1b[0m\n", exe.Name, err)
return err
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require (
github.com/dsnet/compress v0.0.1
github.com/fcharlie/buna v0.4.4
github.com/golang/snappy v0.0.4 // indirect
github.com/klauspost/compress v1.13.2
github.com/klauspost/compress v1.13.3
github.com/pelletier/go-toml v1.9.3
github.com/ulikunitz/xz v0.5.10
)
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEW
github.com/klauspost/compress v1.4.1/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
github.com/klauspost/compress v1.13.2 h1:YecVYiuZPySnUyT8Ar9d5VawPwybeQw9IcwsLfdfdEk=
github.com/klauspost/compress v1.13.2/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg=
github.com/klauspost/compress v1.13.3 h1:BtAvtV1+h0YwSVwWoYXMREPpYu9VzTJ9QDI1TEg/iQQ=
github.com/klauspost/compress v1.13.3/go.mod h1:8dP1Hq4DHOhN9w426knH3Rhby4rFm6D8eO+e+Dq5Gzg=
github.com/klauspost/cpuid v1.2.0/go.mod h1:Pj4uuM528wm8OyEC2QMXAi2YiTZ96dNQPGgoMS4s3ek=
github.com/pelletier/go-toml v1.9.3 h1:zeC5b1GviRUyKYd6OJPvBU/mcVDVoL1OhT17FCt5dSQ=
github.com/pelletier/go-toml v1.9.3/go.mod h1:u1nR/EPcESfeI/szUZKdtJ0xRNbUoANCkoOuaOx1Y+c=
Expand Down

0 comments on commit 941d9a0

Please sign in to comment.