Re: ID_LIKE Missing From /etc/os-release
Reply #5 –
For some closure, the install script was amended with the logic I mentioned earlier:
# Append upstream distributions through package manager landmarks
command -v apt-get &> /dev/null && dists="$dists debian"
command -v pacman &> /dev/null && dists="$dists arch"
I'm sure more exceptions will keep coming up but this should handle most of them.
While that does solve the problem immediately, it also sets the precedence that the OS pattern can get out of control. For example:
*arch*|*artix*|*endeavour*|*reborn*|*bespokedistro*|*etc*)
The real pattern here is they're all arch, so I just need to find that out.