From 9c79019970ca14ad599eba9297ab3c2459199a47 Mon Sep 17 00:00:00 2001 From: Xinwei Xiong <3293172751NSS@gmail.com> Date: Mon, 25 Mar 2024 12:13:21 +0800 Subject: [PATCH] Update verify-typecheck.sh --- scripts/verify-typecheck.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/scripts/verify-typecheck.sh b/scripts/verify-typecheck.sh index ad004c997..f6c14844f 100755 --- a/scripts/verify-typecheck.sh +++ b/scripts/verify-typecheck.sh @@ -21,14 +21,7 @@ source "${OPENIM_ROOT}/scripts/lib/init.sh" openim::golang::verify_go_version -BINS=( - typecheck -) - cd "${OPENIM_ROOT}" -# As of June, 2020 the typecheck tool is written in terms of go/packages, but -# that library doesn't work well with multiple modules. Until that is done, -# force this tooling to run in a fake GOPATH. ret=0 TYPECHECK_SERIAL="${TYPECHECK_SERIAL:-false}" scripts/run-in-gopath.sh \ @@ -36,6 +29,6 @@ make tools.verify.typecheck ${OPENIM_ROOT}/_output/tools/typecheck "$@" "--serial=$TYPECHECK_SERIAL" || ret=$? if [[ $ret -ne 0 ]]; then openim::log::error "Type Check has failed. This may cause cross platform build failures." >&2 - openim::log::error "Please see https://github.com/openimsdk/open-im-server/tree/main/test/typecheck for more information." >&2 + openim::log::error "Please see https://github.com/kubecub/typecheck for more information." >&2 exit 1 fi