sudo or not sudo shall be the problem of the caller

master
Marc Wäckerlin 9 years ago
parent dd62598282
commit 3b70d80fa8
  1. 6
      resolve-debbuilddeps.sh

@ -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

Loading…
Cancel
Save