Fix echo -n on macOS

This commit is contained in:
DidierA 2025-01-31 16:45:24 +01:00
parent 092af1413d
commit 4d771fb1f6
No known key found for this signature in database

View File

@ -188,6 +188,9 @@ if [ $? -ne 0 ] ; then
fi
fi
# on macOS the built-in echo does not support -n, use /bin/echo instead
if [ "$MACPEAS" ] ; then alias echo=/bin/echo ; fi
print_title(){
if [ "$DEBUG" ]; then
END_T1_TIME=$(date +%s 2>/dev/null)