mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
separate function for determining linux distro
This commit is contained in:
parent
ec3298535e
commit
f1ee876644
@ -55,6 +55,11 @@
|
|||||||
# Check for 'uname' and abort if it is not available.
|
# Check for 'uname' and abort if it is not available.
|
||||||
uname -v > /dev/null 2>&1 || { echo >&2 "ERROR - solidity requires 'uname' to identify the platform."; exit 1; }
|
uname -v > /dev/null 2>&1 || { echo >&2 "ERROR - solidity requires 'uname' to identify the platform."; exit 1; }
|
||||||
|
|
||||||
|
detect_linux_distro() {
|
||||||
|
DISTRO=$(lsb_release -is)
|
||||||
|
echo $DISTRO
|
||||||
|
}
|
||||||
|
|
||||||
case $(uname -s) in
|
case $(uname -s) in
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
@ -124,7 +129,7 @@ case $(uname -s) in
|
|||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|
||||||
Linux)
|
Linux)
|
||||||
case $(lsb_release -is) in
|
case $(detect_linux_distro) in
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
# Arch Linux
|
# Arch Linux
|
||||||
|
Loading…
Reference in New Issue
Block a user