1

try to fix a BSD bug

This commit is contained in:
Evan Pratten 2024-02-29 14:44:34 -05:00
parent 7a8fd90ac2
commit 9d73414dd3

View File

@ -13,7 +13,7 @@ fi
if [ $(uname -s | grep -c BSD) -gt 0 ]; then # BSD
echo -e "${green}Platform:$reset_color $(uname -s) $(uname -r) $(uname -p)"
elif [ $(uname -o | grep -c Msys) -gt 0 ]; then # Windows
elif [ $(uname -s | grep -c MINGW) -gt 0 ]; then # Windows
echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)"
else # Linux-y things
@ -24,7 +24,7 @@ fi
# Determine if $EWCONFIG_ROOT contains uncommitted changes
# Skip this if on Windows
if [ -d $EWCONFIG_ROOT/.git ]; then
if [ $(uname -o | grep -c Msys) -eq 0 ]; then
if [ $(uname -s | grep -c MINGW) -eq 0 ]; then
if [ -n "$(git -C $EWCONFIG_ROOT status --porcelain)" ]; then
echo -e "${red}ewconfig contains uncommitted changes$reset_color"
fi