Skip to content

Commit

Permalink
Solve issue with runtime on ubuntu noble.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Aug 14, 2024
1 parent 3132a95 commit 15fbfb3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/metacall-runtime.sh
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ sub_rpc(){
;;
esac

if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "unstable" ]; then
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "noble" ] || [ "${CODENAME}" = "unstable" ]; then
sub_apt_install_hold libcurl4t64
else
sub_apt_install_hold libcurl4
Expand Down Expand Up @@ -345,7 +345,7 @@ sub_backtrace(){
;;
esac

if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "unstable" ]; then
if [ "${CODENAME}" = "trixie" ] || [ "${CODENAME}" = "noble" ] || [ "${CODENAME}" = "unstable" ]; then
sub_apt_install_hold libdw1t64 libelf1t64
else
sub_apt_install_hold libdw1
Expand Down

0 comments on commit 15fbfb3

Please sign in to comment.