From 7ea806b778cbf70a17dd0dc0ce53b25af49367ac Mon Sep 17 00:00:00 2001 From: Chris Wanstrath Date: Thu, 19 Feb 2026 19:20:12 -0800 Subject: [PATCH] Add paw print emoji to install.sh status messages --- src/server/install.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/server/install.sh b/src/server/install.sh index eb10d76..e33241a 100644 --- a/src/server/install.sh +++ b/src/server/install.sh @@ -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