From 6dea0ef56fded62dd5131358faab6fa9d5df3bf8 Mon Sep 17 00:00:00 2001 From: dpuzyrkov <dpuzyrkov@termt.com> Date: Mon, 16 May 2022 13:30:28 +0300 Subject: [PATCH] [*] removed sudo for apt-get. --- linux/ubuntu/scripts/pre-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/ubuntu/scripts/pre-build.sh b/linux/ubuntu/scripts/pre-build.sh index e15f48c..6594d92 100755 --- a/linux/ubuntu/scripts/pre-build.sh +++ b/linux/ubuntu/scripts/pre-build.sh @@ -36,7 +36,7 @@ install_dependencies() { echo "" local PKG_DEPPIES=$(echo $PKG_DEPS | sed 's/\"//g') echo "[DEBUGGA] Attempting to install $PKG_DEPPIES" - if sudo /usr/bin/apt-get install -y $PKG_DEPPIES ; then + if /usr/bin/apt-get install -y $PKG_DEPPIES ; then echo "" echo "[INF] Packages were installed successfully" else -- GitLab