- fix sid

This commit is contained in:
SoftCoder 2016-07-14 15:36:42 -07:00
parent d3c1891a3d
commit 8b11e875c6
1 changed files with 4 additions and 4 deletions

View File

@ -104,13 +104,13 @@ case $distribution in
$installcommand $installcommand
if [ "$?" -ne "0" ]; then error_during_installation; exit 1; fi if [ "$?" -ne "0" ]; then error_during_installation; exit 1; fi
;; ;;
testing|unstable|9|9.0) unstable)
installcommand="apt-get install $APT_OPTIONS $packages_for_next_debian_ubuntu_mint" installcommand="apt-get install $APT_OPTIONS $packages_for_debian_sid"
$installcommand $installcommand
if [ "$?" -ne "0" ]; then error_during_installation; exit 1; fi if [ "$?" -ne "0" ]; then error_during_installation; exit 1; fi
;; ;;
sid) testing|9|9.0)
installcommand="apt-get install $APT_OPTIONS $packages_for_debian_sid" installcommand="apt-get install $APT_OPTIONS $packages_for_next_debian_ubuntu_mint"
$installcommand $installcommand
if [ "$?" -ne "0" ]; then error_during_installation; exit 1; fi if [ "$?" -ne "0" ]; then error_during_installation; exit 1; fi
;; ;;