mirror of
https://github.com/gravitl/netmaker.git
synced 2024-11-10 17:48:25 +08:00
improve lower-casing
fixes an error on OpenWRT
This commit is contained in:
parent
ec90dab437
commit
9a5fd05005
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue