diff options
Diffstat (limited to 'scripts/install_deps.sh')
-rwxr-xr-x | scripts/install_deps.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/install_deps.sh b/scripts/install_deps.sh index bbf28d95..3884cb12 100755 --- a/scripts/install_deps.sh +++ b/scripts/install_deps.sh @@ -55,6 +55,11 @@ # 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; } +detect_linux_distro() { + DISTRO=$(lsb_release -is) + echo $DISTRO +} + case $(uname -s) in #------------------------------------------------------------------------------ @@ -124,7 +129,7 @@ case $(uname -s) in #------------------------------------------------------------------------------ Linux) - case $(lsb_release -is) in + case $(detect_linux_distro) in #------------------------------------------------------------------------------ # Arch Linux |