Merge pull request #25 from Jakeler/master

Replace `arch` with `uname -m`
This commit is contained in:
Me No Dev 2021-02-16 18:58:33 +02:00 committed by GitHub
commit 15a9839939
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,7 +36,7 @@ AR_PLATFORMIO_PY="$AR_TOOLS/platformio-build.py"
AR_ESPTOOL_PY="$AR_TOOLS/esptool.py"
AR_GEN_PART_PY="$AR_TOOLS/gen_esp32part.py"
AR_SDK="$AR_TOOLS/sdk"
OSBITS=`arch`
OSBITS=`uname -m`
function get_os(){
if [[ "$OSTYPE" == "linux"* ]]; then