From f649a80f704df7df863a994c5003c1d42dc4d038 Mon Sep 17 00:00:00 2001 From: Lucas Saavedra Vaz <32426024+lucasssvaz@users.noreply.github.com> Date: Fri, 8 Mar 2024 21:29:57 -0300 Subject: [PATCH] Replace "arch" with "uname -m" --- tools/config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/config.sh b/tools/config.sh index 74de3b8c5..936a9c50c 100755 --- a/tools/config.sh +++ b/tools/config.sh @@ -58,7 +58,7 @@ if [ -d "$IDF_PATH" ]; then fi function get_os(){ - OSBITS=`arch` + OSBITS=`uname -m` if [[ "$OSTYPE" == "linux"* ]]; then if [[ "$OSBITS" == "i686" ]]; then echo "linux32"