diff --git a/plugins/david.zsh b/plugins/david.zsh index 7cd764a..cc7167e 100644 --- a/plugins/david.zsh +++ b/plugins/david.zsh @@ -141,7 +141,7 @@ update() { #checking for system - systems="ubuntu arch solus" + systems="ubuntu arch solus raspbian" issue="$(cat /etc/issue)" for item in $systems; do echo $issue | grep -i $item >> /dev/null @@ -154,6 +154,10 @@ update() ubuntu) sudo apt-get update && sudo apt-get dist-upgrade ;; + raspbian) + sudo apt-get update && sudo apt-get dist-upgrade + ;; + arch) sudo pacman -Syu ;;