1

shh windows

This commit is contained in:
Evan Pratten 2024-01-17 20:57:16 -05:00
parent 5f11316eba
commit ac657e9af6

View File

@ -4,7 +4,7 @@ if [ -n "$BASH_VERSION" ]; then
red='\033[0;31m' red='\033[0;31m'
green='\033[0;32m' green='\033[0;32m'
reset_color='\033[0m' reset_color='\033[0m'
elif [ -n "$ZSH_VERSION" ]; then elif [ -n "$ZSH_VERSION" ]; then
red="$fg[red]" red="$fg[red]"
green="$fg[green]" green="$fg[green]"
fi fi
@ -13,7 +13,7 @@ fi
if [ $(uname -s | grep -c BSD) -gt 0 ]; then # BSD if [ $(uname -s | grep -c BSD) -gt 0 ]; then # BSD
echo -e "${green}Platform:$reset_color $(uname -s) $(uname -r) $(uname -p)" echo -e "${green}Platform:$reset_color $(uname -s) $(uname -r) $(uname -p)"
elif [ $(uname -o | grep -c Msys) -gt 0 ]; then # Windows elif [ $(uname -o | grep -c Msys) -gt 0 ]; then # Windows
echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)" echo -e "${green}Platform:$reset_color $(uname -o) $(uname -r)"
else # Linux-y things else # Linux-y things
@ -22,17 +22,12 @@ else # Linux-y things
fi fi
# Determine if $EWCONFIG_ROOT contains uncommitted changes # Determine if $EWCONFIG_ROOT contains uncommitted changes
# Skip this if on Windows
if [ -d $EWCONFIG_ROOT/.git ]; then if [ -d $EWCONFIG_ROOT/.git ]; then
if [ $(uname -o | grep -c Msys) -eq 0 ]; then
if [ -n "$(git -C $EWCONFIG_ROOT status --porcelain)" ]; then if [ -n "$(git -C $EWCONFIG_ROOT status --porcelain)" ]; then
echo -e "${red}ewconfig contains uncommitted changes$reset_color" echo -e "${red}ewconfig contains uncommitted changes$reset_color"
fi fi
fi
fi fi
# # Determine if $EWCONFIG_ROOT is up-to-date with origin. Only do this if we have network connectivity.
# if [ -d $EWCONFIG_ROOT/.git ]; then
# if ping -c 1 -W 1 git.github.com &> /dev/null; then
# if [ -n "$(git -C $EWCONFIG_ROOT fetch --dry-run 2>&1 | grep -v 'up to date')" ]; then
# echo "$fg[yellow]ewconfig is not up-to-date with origin$reset_color"
# fi
# fi
# fi