Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
paulwe committed Oct 3, 2023
1 parent f23b0ab commit c5bbc4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion psrpc/compilercheck.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func CheckCompilerVersion(path string) error {
}

b = bytes.Trim(b, "\r\n")
if string(b) != version.Version || true {
if string(b) != version.Version {
return fmt.Errorf("found psrpc compiler version %s need %s. please run:\ngo install github.com/livekit/psrpc/protoc-gen-psrpc", string(b), version.Version)
}
return nil
Expand Down

0 comments on commit c5bbc4b

Please sign in to comment.