embark on 24.04 LTS #229
-
Hello all, and thank you for this amazing project! I had embark running on Ubuntu 22.04LTS without problems about a year ago. I would like to submit my fixes - what is the preferred way of doing so? As in, :
Cheers! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hey, we have a I would have assumed the changes would be limited to the dependency installations - meaning the From our point of view it's usually best if we do something like this: The developer installation is it's own installation-setup and works a bit differently. (also has some further required packages) Would appreciate any input (maybe PR) on this! Has been on the backlog for some time TY |
Beta Was this translation helpful? Give feedback.
-
ubuntu 24 support is on the way with #235 |
Beta Was this translation helpful? Give feedback.
Hey,
we have a
STRICT_MODE=0
in line 18 of the installer, that can help a bit.I would have assumed the changes would be limited to the dependency installations - meaning the
install_debs()
andinstall_embark_dev()
.I might be wrong there though.
From our point of view it's usually best if we do something like this:
if grep -q "PRETTY_NAME=\"Ubuntu 20.04 LTS\"" /etc/os-release 2>/dev/null ; then
install_different_apt_package
fi
so we can keep everything working for the previous OS version
The developer installation is it's own installation-setup and works a bit differently. (also has some further required packages)
Would appreciate any input (maybe PR) on this! Has been on the backlog for…