Add paw print emoji to install.sh status messages

This commit is contained in:
Chris Wanstrath 2026-02-19 19:20:12 -08:00
parent 9e4629ac2f
commit 7ea806b778

View File

@ -7,13 +7,13 @@ ARCH=$(uname -m)
case "$OS" in
darwin) OS=macos ;;
linux) OS=linux ;;
*) echo "Unsupported OS: $OS" >&2; exit 1 ;;
*) echo "🐾 Unsupported OS: $OS" >&2; exit 1 ;;
esac
case "$ARCH" in
x86_64) ARCH=x64 ;;
arm64|aarch64) ARCH=arm64 ;;
*) echo "Unsupported arch: $ARCH" >&2; exit 1 ;;
*) echo "🐾 Unsupported arch: $ARCH" >&2; exit 1 ;;
esac
BINARY="toes-${OS}-${ARCH}"
@ -28,11 +28,11 @@ else
fi
mkdir -p "$INSTALL_DIR"
echo "Downloading toes CLI (${OS}/${ARCH})..."
echo "🐾 Downloading toes CLI (${OS}/${ARCH})..."
curl -fsSL "$URL" -o "$INSTALL_DIR/toes"
chmod +x "$INSTALL_DIR/toes"
echo "Installed toes to $INSTALL_DIR/toes"
echo "🐾 Installed toes to $INSTALL_DIR/toes"
if ! echo "$PATH" | tr ':' '\n' | grep -qx "$INSTALL_DIR"; then
echo "Add $INSTALL_DIR to your PATH to use toes globally"
echo "🐾 Add $INSTALL_DIR to your PATH to use toes globally"
fi