Browse Source

Merge pull request #1388 from HarvsG/patch-1

improve lower-casing for open wrt
dcarns 3 years ago
parent
commit
bc5f3c09ea
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/netclient-install.sh

+ 1 - 1
scripts/netclient-install.sh

@@ -116,7 +116,7 @@ dist=netclient
 echo "OS Version = $(uname)"
 echo "Netclient Version = $VERSION"
 
-case $(uname | tr '[:upper:]' '[:lower:]') in
+case $(uname | tr A-Z a-z) in
 	linux*)
 		if [ -z "$CPU_ARCH" ]; then
 			CPU_ARCH=$(uname -m)