umount /proc

This commit is contained in:
Joey Hess 2013-09-22 13:06:32 -04:00
parent a9881b9d0b
commit c4074961c4

View file

@ -7,6 +7,7 @@ if [ "$(whoami)" != root ]; then
fi fi
mount -t proc proc /proc mount -t proc proc /proc
echo "deb-src http://ftp.us.debian.org/debian stable main" >> /etc/apt/sources.list echo "deb-src http://ftp.us.debian.org/debian stable main" >> /etc/apt/sources.list
apt-get update apt-get update
apt-get -y install build-essential ghc git libncurses5-dev cabal-install apt-get -y install build-essential ghc git libncurses5-dev cabal-install
@ -18,3 +19,5 @@ dpkg -i automake*.deb
rm *.deb rm *.deb
useradd androidbuilder useradd androidbuilder
su androidbuilder -c $0-asuser su androidbuilder -c $0-asuser
umount /proc