Skip to content

Commit be77ffc

Browse files
authored
Merge pull request #37 from qianfei11/master
Add support for Ubuntu 24 in installation script
2 parents 8e80820 + 2337c82 commit be77ffc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

INSTALL

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ setup_ubuntu_host() {
3232
local deps=()
3333
local installed=$(dpkg-query -W -f '${db:Status-Abbrev}|${binary:Package}\n' '*' 2>/dev/null | grep '^ii' | awk -F '|' '{print $2}' | cut -d ':' -f 1)
3434

35-
if [[ "$DISTRIB" == "Ubuntu" ]] && [[ "$DISTRIB_RELEASE" == "18.10" || "$DISTRIB_RELEASE" =~ "20" || "$DISTRIB_RELEASE" =~ "22" ]]; then
35+
if [[ "$DISTRIB" == "Ubuntu" ]] && [[ "$DISTRIB_RELEASE" == "18.10" || "$DISTRIB_RELEASE" =~ "20" || "$DISTRIB_RELEASE" =~ "22" || "$DISTRIB_RELEASE" =~ "24" ]]; then
3636
hostdeps="$hostdeps lib32ncurses6"
3737
else
3838
hostdeps="$hostdeps lib32ncurses5"

0 commit comments

Comments
 (0)