sudo or not sudo shall be the problem of the caller

This commit is contained in:
Marc Wäckerlin
2015-11-02 22:43:29 +00:00
parent dd62598282
commit 3b70d80fa8

View File

@@ -18,8 +18,8 @@ if test -n "${SCHROOTNAME}"; then
schroot -c "${SCHROOTNAME}" -u root -d / -- apt-get install -y dpkg-dev
DEPS=$(schroot -c "${SCHROOTNAME}" -- dpkg-checkbuilddeps 2>&1 || true)
else
sudo apt-get install -y dpkg-dev
sudo apt-get update
apt-get install -y dpkg-dev
apt-get update
DEPS=$(dpkg-checkbuilddeps 2>&1 || true)
fi
DEPS=$(echo "$DEPS" | sed -n '/Unmet build dependencies/ { s,.*Unmet build dependencies: ,,g; s, ([^)]*),,g; s, *| *,|,g; p}')
@@ -33,7 +33,7 @@ for pa in ${DEPS}; do
break;
fi
else
if sudo apt-get -y install ${p}; then
if apt-get -y install ${p}; then
success=1
break;
fi