Automatically resolve missing dependencies in Ubuntu
This may not be so straight in case of Cygwin.
This commit is contained in:
parent
8111c0f1ad
commit
e47f68fcff
@ -84,12 +84,24 @@ while [ "${1}" != "" ]; do
|
|||||||
check_ubuntu devscripts
|
check_ubuntu devscripts
|
||||||
check_ubuntu gnupg
|
check_ubuntu gnupg
|
||||||
check_ubuntu python
|
check_ubuntu python
|
||||||
cat <<- EOT
|
echo -e "\nCPT will now attempt to update/install the requisite packages automatically. Do you want to continue?"
|
||||||
|
select yn in "Yes" "No"; do
|
||||||
|
case $yn in
|
||||||
|
Yes)
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install git curl debhelper devscripts gnupg python
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
No)
|
||||||
|
cat <<- EOT
|
||||||
Install/update the required packages by:
|
Install/update the required packages by:
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install git curl debhelper devscripts gnupg python
|
sudo apt-get install git curl debhelper devscripts gnupg python
|
||||||
EOT
|
EOT
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
exit
|
exit
|
||||||
elif [ "${OS}" = "Cygwin" ]; then
|
elif [ "${OS}" = "Cygwin" ]; then
|
||||||
check_cygwin cygwin # Doesn't make much sense. This is for the appeasement of users.
|
check_cygwin cygwin # Doesn't make much sense. This is for the appeasement of users.
|
||||||
|
Loading…
Reference in New Issue
Block a user