From a9f49b4dc075321d65e2eff69e1c3189ddf88fad Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Wed, 15 Mar 2017 17:55:57 +0100 Subject: [PATCH] fix --- build-scripts/hassio-supervisor/create_hassio_supervisor.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/hassio-supervisor/create_hassio_supervisor.sh b/build-scripts/hassio-supervisor/create_hassio_supervisor.sh index 11d87f40c..6a0850076 100755 --- a/build-scripts/hassio-supervisor/create_hassio_supervisor.sh +++ b/build-scripts/hassio-supervisor/create_hassio_supervisor.sh @@ -25,7 +25,7 @@ if [ "$#" -ne 2 ]; then echo "Optional environment: BUILD_DIR" exit 1 fi -if [ $1 != 'arm' ] && [ $1 != 'aarch64' ] && [ $1 != 'i386' ] && [ $1 != 'amd64' ]; then +if [ $1 != 'armhf' ] && [ $1 != 'aarch64' ] && [ $1 != 'i386' ] && [ $1 != 'amd64' ]; then echo "Error: $1 is not a supported platform for hassio-supervisor!" exit 1 fi