Make mkversion.sh POSIX compliant (dash complains about [[)

This commit is contained in:
Philippe Teuwen
2024-08-27 18:48:20 +02:00
parent 94063607ae
commit 06e98f4643
+1 -1
View File
@@ -92,7 +92,7 @@ sha=$(
cd "$pm3path" || return
# did we find the src?
[ -f armsrc/appmain.c ] || return
if [[ "$OSTYPE" == "darwin"* ]]; then
if [ "${OSTYPE#darwin}" != "$OSTYPE" ]; then
# macOS
ls armsrc/*.[ch] common_arm/*.[ch]|grep -E -v "(disabled|version_pm3|fpga_version_info)"|sort|xargs shasum -a 256 -t|shasum -a 256|cut -c -9
else