forgot to pretty print that...

This commit is contained in:
2025-06-30 13:40:22 -05:00
parent 066708f101
commit 8c68a975e0

View File

@@ -1,7 +1,7 @@
function pi-detect()
{
echo Now running "$FUNCNAME"....
print_info Now running "$FUNCNAME"....
if [ -f /sys/firmware/devicetree/base/model ] ; then
export IS_RASPI="1"
fi
@@ -9,5 +9,5 @@ fi
if [ ! -f /sys/firmware/devicetree/base/model ] ; then
export IS_RASPI="0"
fi
echo Completed running "$FUNCNAME"
print_info Completed running "$FUNCNAME"
}