termux-connecting 1.1.11 → 1.1.12
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.
- package/bin/termux-connect-pc +1 -1
- package/bin/termux-connecting +6 -0
- package/package.json +1 -1
package/bin/termux-connect-pc
CHANGED
package/bin/termux-connecting
CHANGED
|
@@ -43,6 +43,12 @@ title "TERMUX CONNECTING — Setup"
|
|
|
43
43
|
echo "Memeriksa dan mengkonfigurasi Termux..."
|
|
44
44
|
echo "----------------------------------------"
|
|
45
45
|
|
|
46
|
+
# Pastikan coreutils (timeout) tersedia
|
|
47
|
+
if ! command -v timeout >/dev/null; then
|
|
48
|
+
echo " Install coreutils untuk timeout..."
|
|
49
|
+
pkg install -y coreutils
|
|
50
|
+
fi
|
|
51
|
+
|
|
46
52
|
title "1. Update & Upgrade Paket"
|
|
47
53
|
echo "Menjalankan pkg update && pkg upgrade..."
|
|
48
54
|
if timeout 300 pkg update -y && timeout 300 pkg upgrade -y; then
|