From 017c7cf249469770351355b6567b2ec6ccc2b0fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Tue, 6 Apr 2021 15:33:49 +0000 Subject: [PATCH] release: Use sudo to install hub MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This doesn't make much difference for the automated process we have in place, but makes a whole lot of difference for those trying to have the binaries deployed locally. Signed-off-by: Fabiano FidĂȘncio (cherry picked from commit c2197cbf2b5f1f2293b6e50f76710f811445f868) --- tools/packaging/release/kata-deploy-binaries.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/packaging/release/kata-deploy-binaries.sh b/tools/packaging/release/kata-deploy-binaries.sh index a7f2b97a50..26909c6ca9 100755 --- a/tools/packaging/release/kata-deploy-binaries.sh +++ b/tools/packaging/release/kata-deploy-binaries.sh @@ -81,7 +81,7 @@ verify_hub() { go get -d ${hub_repo} || true pushd ${GOPATH}/src/${hub_repo} make - make install prefix=/usr/local + sudo -E make install prefix=/usr/local popd fi }