sudo or not sudo shall be the problem of the caller
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user