Skip to content

Commit

Permalink
Add support for Debian Buster (#126)
Browse files Browse the repository at this point in the history
Add support for Debian Buster
  • Loading branch information
seemethere authored Jul 1, 2019
2 parents 2f4ae48 + 641cbb9 commit 8f03fee
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,9 @@ check_forked() {
fi
dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
case "$dist_version" in
10)
dist_version="buster"
;;
9)
dist_version="stretch"
;;
Expand Down Expand Up @@ -291,6 +294,9 @@ do_install() {
debian|raspbian)
dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
case "$dist_version" in
10)
dist_version="buster"
;;
9)
dist_version="stretch"
;;
Expand Down

0 comments on commit 8f03fee

Please sign in to comment.