diff options
author | Shane Synan <digitalcircuit36939@gmail.com> | 2017-02-12 13:56:23 -0600 |
---|---|---|
committer | Shane Synan <digitalcircuit36939@gmail.com> | 2017-02-12 13:56:23 -0600 |
commit | 2b2fb949423654d4767dd08b5f9bd78e58bb4725 (patch) | |
tree | c0c491789a87fb5cec5cd47a3c3258827f2ee8bd | |
parent | 6028149249e7ef1c9f5afa2da85ecee8c48590ef (diff) |
Fix typo RELASE -> RELEASE
Fix minor typo in detecting Arch release version (currently unused).
-rwxr-xr-x | prepare-videochat.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prepare-videochat.sh b/prepare-videochat.sh index 8c32650..5babe86 100755 --- a/prepare-videochat.sh +++ b/prepare-videochat.sh @@ -297,7 +297,7 @@ if can_run lsb_release; then RELEASE=`lsb_release -r | cut -f2 -d ":"` elif [ -f "/etc/arch-release" ]; then DIST="Arch" - RELASE="" + RELEASE="" elif [ -f /etc/debian_version ] ; then DIST="Debian" RELEASE=`perl -ne 'chomp; if(m:(jessie|testing|sid):){print "8.0"}elsif(m:[\d\.]+:){print}else{print "0.0"}' < /etc/debian_version` |