mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 10:12:00 +08:00
Allows package to be installed in ElementaryOS
Changes the condition for detecting the distro name so ElementaryOS (ubuntu based) goes as an Ubuntu and the package installs.
This commit is contained in:
parent
d8beb4a0cf
commit
ce3d5c51d1
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ case "$1" in
|
|||
|
||||
DISTRO=`lsb_release -s -i`
|
||||
|
||||
if [ "$DISTRO" = "Ubuntu" ]; then
|
||||
if [ "$DISTRO" = "Ubuntu" ] || [ "$DISTRO" = "elementary OS" ]; then
|
||||
DISTS=$UBUNTU_CODENAMES
|
||||
DISTRO="ubuntu"
|
||||
elif [ "$DISTRO" = "Debian" ]; then
|
||||
|
|
Loading…
Reference in a new issue