mirror of
https://github.com/jesseduffield/lazydocker.git
synced 2026-07-22 07:11:01 +00:00
- Add error checking for failed downloads/API requests using set -e - Use proper GitHub API parsing instead of fragile sed extraction - Better architecture/OS detection and mapping - Add user feedback messages and progress reporting - Ensure target directory creation before installation - Verify successful extraction before installation This enhances reliability, handles edge cases better, and improves the user experience during installation/updates.
48 lines
1.4 KiB
Bash
Executable file
48 lines
1.4 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e # Exit on any error
|
|
|
|
# Allow custom installation directory
|
|
DIR="${DIR:-"$HOME/.local/bin"}"
|
|
|
|
# Map architecture to GitHub's binary naming convention
|
|
ARCH=$(uname -m)
|
|
case "$ARCH" in
|
|
i386|i686) ARCH="x86" ;;
|
|
armv6*) ARCH="armv6" ;;
|
|
armv7*) ARCH="armv7" ;;
|
|
aarch64*) ARCH="arm64" ;;
|
|
x86_64) ARCH="x86_64" ;; # Explicitly handle common 64-bit
|
|
esac
|
|
|
|
OS=$(uname -s | tr '[:upper:]' '[:lower:]') # Ensure lowercase (e.g., "darwin")
|
|
|
|
# Fetch latest version using GitHub API
|
|
GITHUB_LATEST_VERSION=$(curl -sfL https://api.github.com/repos/jesseduffield/lazydocker/releases/latest | grep -oP '"tag_name": "\K(.*)(?=")')
|
|
if [ -z "$GITHUB_LATEST_VERSION" ]; then
|
|
echo "Failed to fetch latest version."
|
|
exit 1
|
|
fi
|
|
|
|
# Build URL and download
|
|
GITHUB_FILE="lazydocker_${GITHUB_LATEST_VERSION//v/}_${OS}_${ARCH}.tar.gz"
|
|
GITHUB_URL="https://github.com/jesseduffield/lazydocker/releases/download/${GITHUB_LATEST_VERSION}/${GITHUB_FILE}"
|
|
|
|
echo "Downloading lazydocker $GITHUB_LATEST_VERSION for ${OS}_${ARCH}..."
|
|
if ! curl -sfL -o lazydocker.tar.gz "$GITHUB_URL"; then
|
|
echo "Download failed. Check your OS/architecture or network connection."
|
|
exit 1
|
|
fi
|
|
|
|
# Extract and install
|
|
tar -xzf lazydocker.tar.gz lazydocker
|
|
if [ ! -f "lazydocker" ]; then
|
|
echo "Extraction failed. Corrupted download?"
|
|
exit 1
|
|
fi
|
|
|
|
mkdir -p "$DIR" # Ensure directory exists
|
|
install -v -m 755 lazydocker -t "$DIR"
|
|
rm -f lazydocker lazydocker.tar.gz
|
|
|
|
echo "Installed lazydocker to $DIR"
|