Skip to content

Commit

Permalink
delete: Remove multistrap as it is no longer needed
Browse files Browse the repository at this point in the history
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:
- termux#376
- termux@bb97e3c
  • Loading branch information
chenchongbiao committed Aug 22, 2024
1 parent 6a81d8d commit 104926d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
# Remove distro plugins to filter and upload built distributions and its plugins later on
rm -rf ./distro-plugins/*
- name: Install Needed Dependencies
run: sudo apt-get update && sudo apt-get install -yq curl debian-archive-keyring jq mmdebstrap qemu-user-static binfmt-support multistrap
run: sudo apt-get update && sudo apt-get install -yq curl debian-archive-keyring jq mmdebstrap qemu-user-static binfmt-support
- name: Build distribution rootfs
run: |
distros_to_be_built=$(cat ./distributions.txt)
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-rootfs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 104926d

Please sign in to comment.