mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-09 16:00:22 +00:00
scripts: add -mod=vendor to go run in check-env.sh
Without -mod=vendor running go run in this script may take more resources than needed to execute. This also makes it consistent go build (and alike) are invoked in the other scripts and the Makefile. Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
134e11e26e
commit
e111f2b613
@ -41,7 +41,7 @@ if [ -n "$(command -v go)" ]; then
|
||||
# in case of a failed execution, the user will be informed about
|
||||
# the missing packages based on whether they are on rpm or debian
|
||||
# based systems.
|
||||
if ! go run "${LIBCHECK}" > /dev/null; then
|
||||
if ! go run -mod=vendor "${LIBCHECK}" > /dev/null; then
|
||||
if [ -n "${RPM_CMD}" ]; then
|
||||
echo "Packages libcephfs-devel librbd-devel librados-devel need to be installed"
|
||||
elif [ -n "${DPKG_CMD}" ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user