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