tool/zsh/mmake: style

This commit is contained in:
Steven Dee (Jōshin) 2025-01-05 20:53:53 -08:00
parent 21968acf99
commit 102edf4ea2
No known key found for this signature in database

View file

@ -40,9 +40,9 @@ done
} }
local make=$( local make=$(
case $MAKE in case $MAKE in
*/*) echo $MAKE ;; */*) echo $MAKE ;;
?*) command -v $MAKE ;; ?*) command -v $MAKE ;;
*) echo .cosmocc/current/bin/make *) echo .cosmocc/current/bin/make ;;
esac esac
) )
if [[ ! -x $make ]]; then if [[ ! -x $make ]]; then
@ -50,7 +50,7 @@ if [[ ! -x $make ]]; then
echo echo
echo 'https://cosmo.zip/pub/cosmos/bin/make' echo 'https://cosmo.zip/pub/cosmos/bin/make'
echo echo
echo 'then either put it on your $PATH or point to it with $MAKE.' echo 'then put it on $PATH or point $MAKE to it.'
} >&2; return 1 } >&2; return 1
fi fi
( set -x ( set -x