-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdrink.sh
executable file
·121 lines (101 loc) · 2.91 KB
/
drink.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#!/bin/bash
# drink.sh - One-line installer for Potions
# Author: Henrique A. Lavezzo (Rynaro)
set -e
echo "🧪 Potions one-line installer"
echo "=============================="
# Detect OS for better user feedback
OS_TYPE="$(uname -s)"
if [ "$OS_TYPE" = "Darwin" ]; then
OS_NAME="macOS"
elif [ "$OS_TYPE" = "Linux" ]; then
if grep -qi microsoft /proc/version 2>/dev/null; then
OS_NAME="WSL"
elif [ -n "$PREFIX" ] && [ -x "$PREFIX/bin/termux-info" ]; then
OS_NAME="Termux"
else
OS_NAME="Linux"
fi
else
OS_NAME="Unknown"
fi
echo "Detected environment: $OS_NAME"
# Temporary directory for downloading
TEMP_DIR=$(mktemp -d)
POTIONS_DIR="$HOME/.potions-installer"
cleanup() {
echo "Cleaning up temporary files..."
rm -rf "$TEMP_DIR"
}
trap cleanup EXIT
# Check for download tools
DOWNLOAD_TOOL=""
if command -v curl &> /dev/null; then
DOWNLOAD_TOOL="curl"
elif command -v wget &> /dev/null; then
DOWNLOAD_TOOL="wget"
else
echo "❌ Neither curl nor wget found. Installing curl..."
# Install curl based on OS
if [ "$OS_NAME" = "macOS" ]; then
if ! command -v brew &> /dev/null; then
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
fi
brew install curl
elif [ "$OS_NAME" = "Termux" ]; then
pkg install -y curl
else
# Debian/Ubuntu/WSL
sudo apt-get update
sudo apt-get install -y curl
fi
DOWNLOAD_TOOL="curl"
fi
# Check for git installation
if command -v git &> /dev/null; then
HAS_GIT=true
else
HAS_GIT=false
fi
if [ "$HAS_GIT" = true ]; then
echo "📦 Downloading Potions via Git..."
git clone --depth=1 https://github.com/Rynaro/potions.git "$TEMP_DIR/potions"
# Move files to installation directory
mkdir -p "$POTIONS_DIR"
cp -r "$TEMP_DIR/potions/"* "$POTIONS_DIR/"
cp -r "$TEMP_DIR/potions/."* "$POTIONS_DIR/" 2>/dev/null || true
else
# Fallback to download via archive if git is not available
echo "📦 Downloading Potions zip archive..."
ARCHIVE_URL="https://github.com/Rynaro/potions/archive/refs/heads/main.zip"
ARCHIVE_PATH="$TEMP_DIR/potions.zip"
if [ "$DOWNLOAD_TOOL" = "curl" ]; then
curl -L "$ARCHIVE_URL" -o "$ARCHIVE_PATH"
else
wget -O "$ARCHIVE_PATH" "$ARCHIVE_URL"
fi
# Check for unzip
if ! command -v unzip &> /dev/null; then
echo "Installing unzip..."
if [ "$OS_NAME" = "macOS" ]; then
brew install unzip
elif [ "$OS_NAME" = "Termux" ]; then
pkg install -y unzip
else
sudo apt-get update
sudo apt-get install -y unzip
fi
fi
# Extract files
echo "📂 Extracting files..."
mkdir -p "$TEMP_DIR/extract"
unzip -q "$ARCHIVE_PATH" -d "$TEMP_DIR/extract"
# Create installation directory and copy files
mkdir -p "$POTIONS_DIR"
cp -r "$TEMP_DIR/extract/"*/* "$POTIONS_DIR/"
cp -r "$TEMP_DIR/extract/"*/.* "$POTIONS_DIR/" 2>/dev/null || true
fi
echo "🔧 Installing..."
cd "$POTIONS_DIR"
chmod +x install.sh
./install.sh