Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cmd/oci-runtime-tool/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ func main() {
app := cli.NewApp()
app.Name = "oci-runtime-tool"
if gitCommit != "" {
app.Version = fmt.Sprintf("0.1.0, commit: %s", gitCommit)
app.Version = fmt.Sprintf("0.2.0, commit: %s", gitCommit)
} else {
app.Version = "0.1.0"
app.Version = "0.2.0"
}
app.Usage = "OCI (Open Container Initiative) runtime tools"
app.Flags = []cli.Flag{
Expand Down
2 changes: 1 addition & 1 deletion cmd/runtimetest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ func run(context *cli.Context) error {
func main() {
app := cli.NewApp()
app.Name = "runtimetest"
app.Version = "0.1.0"
app.Version = "0.2.0"
app.Usage = "Compare the environment with an OCI configuration"
app.Description = "runtimetest compares its current environment with an OCI runtime configuration read from config.json in its current working directory. The tests are fairly generic and cover most configurations used by the runtime validation suite, but there are corner cases where a container launched by a valid runtime would not satisfy runtimetest."
app.Flags = []cli.Flag{
Expand Down