From 6e82bd21bb9777c79b22aa7aad8355dde084d7af Mon Sep 17 00:00:00 2001 From: bluesky Date: Thu, 22 Aug 2024 16:15:40 +0800 Subject: [PATCH] delete: Remove multistrap as it is no longer needed multistrap was introduced when mmdebstrap could not be used to build the root filesystem. Now that the project has successfully transitioned to using mmdebstrap, multistrap is redundant. Changes: - https://github.com/termux/proot-distro/pull/376 - https://github.com/termux/proot-distro/commit/bb97e3c371bcc03c59360205d9bc892ffe2296b9 --- bootstrap-rootfs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-rootfs.sh b/bootstrap-rootfs.sh index b23fc7225..2dc25d9b2 100755 --- a/bootstrap-rootfs.sh +++ b/bootstrap-rootfs.sh @@ -10,7 +10,7 @@ if [ "$(uname -o)" = "Android" ]; then exit 1 fi -for i in curl git jq mmdebstrap sudo tar xz multistrap; do +for i in curl git jq mmdebstrap sudo tar xz; do if [ -z "$(command -v "$i")" ]; then echo "[!] '$i' is not installed." exit 1