diff --git a/linux/ubuntu/scripts/pre-build.sh b/linux/ubuntu/scripts/pre-build.sh
index e15f48caedd72dcf258c1fb0ff64c82ef9ee8e0d..6594d92ec08a0adb233bede12173b7be5e138723 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