Correct fmt printf error in bazel_handler
When running tests locally, it fails to build due to using the incorrect formatting. Test: go test soong test Change-Id: Iccdc3fbc93e409d74f1b71d929dd9650492b401d
This commit is contained in:
parent
f8dcf5ead2
commit
15b04e2cbd
1 changed files with 1 additions and 1 deletions
|
@ -441,7 +441,7 @@ phony_root(name = "phonyroot",
|
||||||
case "arm":
|
case "arm":
|
||||||
deps_arm = append(deps_arm, labelString)
|
deps_arm = append(deps_arm, labelString)
|
||||||
default:
|
default:
|
||||||
panic(fmt.Sprintf("unhandled architecture %s for %s", getArchString(val), val))
|
panic(fmt.Sprintf("unhandled architecture %s for %v", getArchString(val), val))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue