openclaw-droid 2.0.4 → 2.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openclaw-droid might be problematic. Click here for more details.
- package/install.sh +6 -2
- package/package.json +1 -1
package/install.sh
CHANGED
|
@@ -15,7 +15,7 @@ NC='\033[0m'
|
|
|
15
15
|
|
|
16
16
|
echo -e "${BLUE}"
|
|
17
17
|
echo "╔═══════════════════════════════════════════╗"
|
|
18
|
-
echo "║ OpenClaw Droid Installer v2.0.
|
|
18
|
+
echo "║ OpenClaw Droid Installer v2.0.6 ║"
|
|
19
19
|
echo "║ AI Gateway for Android (via Ubuntu Proot) ║"
|
|
20
20
|
echo "╚═══════════════════════════════════════════╝"
|
|
21
21
|
echo -e "${NC}"
|
|
@@ -33,7 +33,11 @@ pkg install proot-distro -y
|
|
|
33
33
|
|
|
34
34
|
# Install Ubuntu
|
|
35
35
|
echo -e "\n${BLUE}[2/3]${NC} Installing Ubuntu environment..."
|
|
36
|
-
proot-distro
|
|
36
|
+
if proot-distro list | grep -q "ubuntu.*(installed)"; then
|
|
37
|
+
echo -e " ${GREEN}✓${NC} Ubuntu is already installed. Skipping installation."
|
|
38
|
+
else
|
|
39
|
+
proot-distro install ubuntu || true
|
|
40
|
+
fi
|
|
37
41
|
|
|
38
42
|
# Add login alias
|
|
39
43
|
if ! grep -q "proot-distro login ubuntu" ~/.bashrc; then
|