Merge "Correct fmt printf error in bazel_handler"

This commit is contained in:
Treehugger Robot 2021-03-05 18:08:39 +00:00 committed by Gerrit Code Review
commit b48f9aefea

View file

@ -441,7 +441,7 @@ phony_root(name = "phonyroot",
case "arm":
deps_arm = append(deps_arm, labelString)
default:
panic(fmt.Sprintf("unhandled architecture %s for %s", getArchString(val), val))
panic(fmt.Sprintf("unhandled architecture %s for %v", getArchString(val), val))
}
}