eclass/coreos-go: Fix typo in error message.

Signed-off-by: Geoff Levand <geoff@infradead.org>
This commit is contained in:
Geoff Levand 2015-05-20 10:45:41 -07:00
parent a34c97f748
commit b4343c1f69

View File

@ -26,7 +26,7 @@ go_get_arch() {
go_build() {
debug-print-function ${FUNCNAME} "$@"
[[ $# -eq 0 || $# -gt 2 ]] && die "${ECLASS}: go_install: incorrect # of arguments"
[[ $# -eq 0 || $# -gt 2 ]] && die "${ECLASS}: ${FUNCNAME}: incorrect # of arguments"
local package_name="$1"
local binary_name="${package_name##*/}"