Merge pull request #475 from WiccyShackleton/master
Fix to the installer to enable successful install on Raspbian 9 (stretch)
This commit is contained in:
commit
914e2a2384
8
install
8
install
|
@ -599,6 +599,14 @@ case "${dist}-${code}" in
|
|||
is_debian_dist=true
|
||||
is_debian_stretch=true
|
||||
;;
|
||||
#Fix for Raspbian 9 (stretch)
|
||||
raspbian-9|9)
|
||||
code="stretch"
|
||||
dist="debian"
|
||||
is_debian_dist=true
|
||||
is_debian_stretch=true
|
||||
;;
|
||||
#End of fix
|
||||
debian-8|debian-jessie)
|
||||
code="jessie"
|
||||
is_debian_dist=true
|
||||
|
|
Loading…
Reference in New Issue