improve lower-casing

fixes an error on OpenWRT
This commit is contained in:
HarvsG 2022-07-13 18:25:38 +01:00 committed by GitHub
parent ec90dab437
commit 9a5fd05005
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,7 +114,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)