Switched to the OG CLI

This commit is contained in:
2025-03-02 01:00:52 -06:00
parent 0348290959
commit 8b40a4b1c1
16 changed files with 20 additions and 15 deletions

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# Define the version of the binary to download
VERSION="v1.7.27"
VERSION="v4.0.9"
# Parse command-line arguments
while [[ $# -gt 0 ]]; do
@ -67,7 +67,7 @@ echo "Detected Architecture: $ARCH"
# Function to construct the binary download URL based on version, OS, and architecture
get_binary_url() {
echo "https://github.com/dobicinaitis/tailwind-cli-extra/releases/download/$VERSION/tailwindcss-extra-$OS-$ARCH"
echo "https://github.com/tailwindlabs/tailwindcss/releases/download/$VERSION/tailwindcss-extra-$OS-$ARCH"
}
# Create the 'tw' directory for storing the downloaded binary
@ -75,7 +75,7 @@ TW_DIR="${SCRIPT_DIR}/tw"
mkdir -p "$TW_DIR"
# Set the binary path
BINARY="${TW_DIR}/tailwindcss-extra-${OS}-${ARCH}"
BINARY="${TW_DIR}/tailwindcss-${OS}-${ARCH}"
# Check if the binary is already downloaded, otherwise download it
if [ ! -f "$BINARY" ]; then