Updated dev env setup script.

ISO Creation Now works.



git-svn-id: https://spexeah.com:8443/svn/Asuro@12 6dbc8c32-bb84-406f-8558-d1cf31a0ab0c
This commit is contained in:
kieron
2016-10-30 16:46:58 +00:00
parent fa52f90d8a
commit d0ded03fdd
7 changed files with 22 additions and 3 deletions

View File

@ -71,7 +71,27 @@ else
echo "Success."
fi
echo " "
echo "Installing xorriso..."
sudo apt-get install xorriso
if [ $? -ne 0 ]
then
echo "Failed to install!"
ERRCOUNT=$((ERRCOUNT+1))
else
echo "Success."
fi
echo " "
echo "Installing GRUB PC Bin..."
sudo apt-get install grub-pc-bin
if [ $? -ne 0 ]
then
echo "Failed to install!"
ERRCOUNT=$((ERRCOUNT+1))
else
echo "Success."
fi
echo " "
echo "WARNING: We assume you already have Grub installed."